Skip to content

Commit 797de48

Browse files
committed
ci: fix env var
1 parent d7aa273 commit 797de48

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ on:
1818
type: boolean
1919
default: false
2020
secrets:
21-
NODE_AUTH_TOKEN:
21+
NPM_TOKEN:
2222
required: true
2323
GITHUB_TOKEN_SECRET:
2424
required: true
2525
PAT:
2626
required: true
2727

2828
env:
29-
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
29+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_SECRET }}
3131
NPM_CONFIG_PROVENANCE: true
3232

.github/workflows/new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,6 @@ jobs:
133133
beta-release: ${{ github.event.inputs.beta-release }}
134134
dry-run: ${{ github.event.inputs.dry-run }}
135135
secrets:
136-
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
136+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
137137
GITHUB_TOKEN_SECRET: ${{ secrets.GITHUB_TOKEN }}
138138
PAT: ${{secrets.PAT}}

0 commit comments

Comments
 (0)