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 ec938eb commit 443f869Copy full SHA for 443f869
1 file changed
.github/workflows/npm.yml
@@ -3,7 +3,7 @@ name: Publish to npm
3
on:
4
push:
5
tags:
6
- - 'v*'
+ - "v*.*.*"
7
8
jobs:
9
publish:
@@ -27,10 +27,8 @@ jobs:
27
- name: Setup Node.js
28
uses: actions/setup-node@v4
29
with:
30
- node-version: '20'
31
- registry-url: 'https://registry.npmjs.org'
+ node-version: "20"
+ registry-url: "https://registry.npmjs.org"
32
33
- name: Publish to npm
34
- run: cd dist && npm publish --provenance
35
- env:
36
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ run: cd dist && npm publish --provenance --access public
0 commit comments