Skip to content

Commit 41f96df

Browse files
committed
fix: release canary workflow fixes
1 parent 953e6bf commit 41f96df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release-canary.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ jobs:
2424
- name: Setup Node.js 20
2525
uses: actions/setup-node@v4
2626
with:
27+
registry-url: 'https://registry.npmjs.org'
2728
node-version: 20
2829

2930
- name: Install Dependencies
3031
run: yarn
3132

3233
- name: Release
3334
run: |
34-
yarn changeset version --snapshot canary
35+
yarn changeset version --snapshot canary && yarn install --no-immutable
36+
yarn build
3537
yarn changeset publish --tag canary --no-git-tag --snapshot
3638
env:
3739
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)