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 68c07be commit 883cf97Copy full SHA for 883cf97
2 files changed
.github/workflows/publish.yml
@@ -17,12 +17,13 @@ jobs:
17
uses: actions/setup-node@v2
18
with:
19
node-version: '18'
20
+ registry-url: 'https://registry.npmjs.org'
21
22
- name: Install dependencies
- run: npm install
23
+ run: npm ci
24
25
- name: Publish to npm
- run: npm publish
26
+ run: npm publish --provenance --access public
27
env:
28
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
29
.npmrc
@@ -0,0 +1,3 @@
1
+//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
2
+registry=https://registry.npmjs.org/
3
+always-auth=true
0 commit comments