We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ef232 commit 346977dCopy full SHA for 346977d
1 file changed
.github/workflows/release.yml
@@ -24,6 +24,7 @@ jobs:
24
uses: actions/setup-node@v6
25
with:
26
node-version: '24'
27
+ registry-url: 'https://registry.npmjs.org'
28
29
- name: Set tag
30
id: tagName
@@ -37,8 +38,12 @@ jobs:
37
38
39
- name: Publish a release candidate
40
if: contains(steps.tagName.outputs.tag, 'rc')
- run: npm publish --tag=rc --provenance --access public
41
+ env:
42
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43
+ run: npm publish --tag=rc --provenance
44
45
- name: Publish a regular release
46
if: false == contains(steps.tagName.outputs.tag, 'rc')
- run: npm publish --provenance --access public
47
48
49
+ run: npm publish --provenance
0 commit comments