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 02b8005 commit 4061a42Copy full SHA for 4061a42
.github/workflows/release-on-npm.yaml
@@ -40,9 +40,12 @@ jobs:
40
git add .
41
git commit -m "Update versions to ${{ env.VERSION }}"
42
43
- - name: Publish on NPM
+ - name: Configure NPM authentication
44
+ run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
45
env:
- NPM_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
46
+ NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
47
+
48
+ - name: Publish on NPM
49
run: pnpm publish --recursive --access public --no-git-checks
50
51
- name: Push changes
0 commit comments