We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d862431 commit b25fc1aCopy full SHA for b25fc1a
.github/workflows/release.yml
@@ -49,4 +49,7 @@ jobs:
49
shell: bash
50
env:
51
NODE_AUTH_TOKEN: ${{ secrets.NPM_API_TOKEN }}
52
- run: npm publish --non-interactive --access public
+ run: |
53
+ mv ci-npmrc.txt .npmrc
54
+ npm ci
55
+ npm publish --non-interactive --access public
ci-npmrc.txt
@@ -0,0 +1,4 @@
1
+//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
2
+registry=https://registry.npmjs.org/
3
+always-auth=true
4
+
0 commit comments