We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a322377 commit b2579c9Copy full SHA for b2579c9
.github/workflows/ci.yml
@@ -72,9 +72,14 @@ jobs:
72
populate-and-publish-npm-workspace:
73
permissions:
74
contents: write
75
+ id-token: write
76
needs: build
77
runs-on: ubuntu-24.04
78
steps:
79
+ - name: Install Node.js
80
+ uses: actions/setup-node@v4
81
+ with:
82
+ node-version: '24'
83
- name: Checkout
84
uses: actions/checkout@v4
85
- name: Download build artifacts
@@ -93,3 +98,6 @@ jobs:
93
98
artifactContentType: application/x-xz
94
99
prerelease: ${{ contains(github.ref, '-rc') }}
95
100
makeLatest: ${{ !contains(github.ref, '-rc') }}
101
+ - name: Publish npm packages
102
+ if: startsWith(github.ref, 'refs/tags/v')
103
+ run: cd npm && npm publish --workspaces --tag=${{ contains(github.ref, '-rc') && 'next' || 'latest' }} --dry-run
0 commit comments