Skip to content

Commit fac02f3

Browse files
committed
use the correct token name
I used `NODE_AUTH_TOKEN` in other projects but that doesn't seem to work anymore for some reason 🤔 Found this resource that talks about `NPM_TOKEN`: https://docs.npmjs.com/using-private-packages-in-a-ci-cd-workflow
1 parent 4a70091 commit fac02f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release-insiders.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
run: npm publish --tag insiders
5555
env:
5656
CI: true
57-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
57+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
run: npm publish
4848
env:
4949
CI: true
50-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
50+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)