Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
cache: "yarn"
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'

- id: restore-dependencies
name: Restore Dependencies
uses: actions/cache/restore@v5
with:
path: "**/node_modules"
path: '**/node_modules'
key: node-modules-${{ hashFiles('./yarn.lock') }}

- name: Install Dependencies
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/cache/save@v5
if: steps.restore-dependencies.outputs.cache-hit != 'true'
with:
path: "**/node_modules"
path: '**/node_modules'
key: ${{ steps.restore-dependencies.outputs.cache-primary-key }}

# Generate package matrix for changed packages
Expand Down Expand Up @@ -95,14 +95,14 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
cache: "yarn"
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'

- name: Restore Dependencies Cache
uses: actions/cache/restore@v5
with:
path: "**/node_modules"
path: '**/node_modules'
key: node-modules-${{ hashFiles('./yarn.lock') }}

- name: Check for Changed Packages
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
if: steps.check-changes.outputs.has_changes == 'true'
uses: actions/cache/save@v5
with:
path: "**/dist"
path: '**/dist'
key: dist-${{ env.rid }}

- name: Deploy Packages
Expand All @@ -161,8 +161,9 @@ jobs:

publish-documentation:
name: Publish - Documentation
needs: [publish-npm,analyze-changes]
needs: [publish-npm, analyze-changes]
runs-on: ubuntu-latest
if: github.ref_name == 'next'

steps:
- name: Documentation Deploy Steps
Expand Down Expand Up @@ -241,20 +242,20 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
cache: "yarn"
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'

- name: Restore Dependencies Cache
uses: actions/cache/restore@v5
with:
path: "**/node_modules"
path: '**/node_modules'
key: node-modules-${{ hashFiles('./yarn.lock') }}

- name: Restore Distributables Cache
uses: actions/cache/restore@v5
with:
path: "**/dist"
path: '**/dist'
key: dist-${{ env.rid }}

- name: Synchronize Packages
Expand Down

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dont think we need these docs anymore as the migration is done.

Large diffs are not rendered by default.

506 changes: 189 additions & 317 deletions packages/contact-center/ai-docs/migration/component-layer-migration.md

Large diffs are not rendered by default.

Loading
Loading