File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,9 @@ jobs:
364364 steps :
365365 - uses : actions/checkout@v4
366366 - uses : actions/setup-node@v4
367- with : { node-version: '24', registry-url: 'https://registry.npmjs.org', always-auth: true }
367+ with : { node-version: '24', registry-url: 'https://registry.npmjs.org' }
368+ - name : Update NPM
369+ run : npm install -g npm@latest
368370 - name : Download package tarball
369371 uses : actions/download-artifact@v4
370372 with :
@@ -390,5 +392,5 @@ jobs:
390392 shell : bash
391393 run : |
392394 set -euxo pipefail
393- npm publish ./artifacts/${{ matrix.package }}/package.tgz --tag "${{ steps.checks.outputs.tag }}"
395+ pnpm publish ./artifacts/${{ matrix.package }}/package.tgz --tag "${{ steps.checks.outputs.tag }}"
394396 echo "npm: \`${{ matrix.package }}@${{ steps.checks.outputs.tag }} | ${{ steps.checks.outputs.version }}\`" >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments