Skip to content

Commit 3367c17

Browse files
authored
build: update npm token in cd workflow (mattrglobal#192)
1 parent ac9fa7a commit 3367c17

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/push-master.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
- run: git config user.email "[email protected]"
3030
- run: npm whoami
3131
env:
32-
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLIC_TOKEN }}
32+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
3333
- run: yarn publish:unstable
3434
env:
35-
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLIC_TOKEN }}
35+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
3636
- name: Report Coverage
3737
uses: codecov/codecov-action@v1
3838
with:

.github/workflows/push-release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- run: git config user.email "[email protected]"
3030
- run: npm whoami
3131
env:
32-
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLIC_TOKEN }}
32+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
3333
- run: yarn publish:release
3434
env:
35-
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLIC_TOKEN }}
35+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}

0 commit comments

Comments
 (0)