Skip to content

Commit 99865e5

Browse files
committed
Stop using access tokens when publishing to npmjs
We are using OIDC now instead of the old style access tokens.
1 parent b29cc64 commit 99865e5

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,16 @@ jobs:
2929
name: npm
3030
path: lib
3131
- run: npm publish --access public
32-
env:
33-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
3432
if: |
3533
github.repository == 'novnc/noVNC' &&
3634
github.event_name == 'release' &&
3735
!github.event.release.prerelease
3836
- run: npm publish --access public --tag beta
39-
env:
40-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
4137
if: |
4238
github.repository == 'novnc/noVNC' &&
4339
github.event_name == 'release' &&
4440
github.event.release.prerelease
4541
- run: npm publish --access public --tag dev
46-
env:
47-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
4842
if: |
4943
github.repository == 'novnc/noVNC' &&
5044
github.event_name == 'push' &&

0 commit comments

Comments
 (0)