We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a04f82 commit 07d7ba3Copy full SHA for 07d7ba3
2 files changed
.github/workflows/publish-libraries.yml
@@ -211,6 +211,12 @@ jobs:
211
- name: Check out ${{ github.repository }}
212
uses: actions/checkout@v4
213
214
+ - name: Setup Node.js
215
+ uses: actions/setup-node@v6
216
+ with:
217
+ node-version: 24
218
+ registry-url: https://registry.npmjs.org
219
+
220
- name: Download NPM packages artifact
221
uses: actions/download-artifact@v4
222
with:
ci/npm-publish.ps1
@@ -35,7 +35,7 @@ try
35
else
36
{
37
Write-Host "Publishing..."
38
- npm publish "$Tarball" "--access=$Access"
+ NODE_AUTH_TOKEN="" npm publish "$Tarball" "--access=$Access" # NODE_AUTH_TOKEN is a workaround for https://github.com/actions/setup-node/issues/1440
39
}
40
41
finally
0 commit comments