Skip to content

Commit b7ed274

Browse files
author
Kyle Keating
committed
Change github secret to ACTIONS_ACCESS_KEY
1 parent 4d547fe commit b7ed274

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/master-change.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
registry: https://registry.npmjs.org/
3333
- uses: JS-DevTools/npm-publish@v1
3434
with:
35-
token: ${{ secrets.NPM_TOKEN_GITHUB }}
35+
token: ${{ secrets.ACTIONS_ACCESS_KEY }}
3636
registry: https://npm.pkg.github.com
3737

3838
make-release:
@@ -77,7 +77,7 @@ jobs:
7777
- name: Install node packages
7878
run: cd ../dist && yarn install --frozen-lockfile
7979
env:
80-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_GITHUB}}
80+
NODE_AUTH_TOKEN: ${{secrets.ACTIONS_ACCESS_KEY}}
8181
# Kind of a hack to avoid recursively copying the dist folder
8282
- name: Move dist folder down
8383
run: mv ../dist dist

.github/workflows/staging-change.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Install node packages
3838
run: cd ../dist && yarn install --frozen-lockfile
3939
env:
40-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_GITHUB}}
40+
NODE_AUTH_TOKEN: ${{secrets.ACTIONS_ACCESS_KEY}}
4141
# Kind of a hack to avoid recursively copying the dist folder
4242
- name: Move dist folder down
4343
run: mv ../dist dist

0 commit comments

Comments
 (0)