From 99865e5aba68372d837b18fdd2a8edf7cea55901 Mon Sep 17 00:00:00 2001 From: Alexander Zeijlon Date: Mon, 3 Nov 2025 13:44:26 +0100 Subject: [PATCH] Stop using access tokens when publishing to npmjs We are using OIDC now instead of the old style access tokens. --- .github/workflows/deploy.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1b9c5c9a..1de3f2f0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,22 +29,16 @@ jobs: name: npm path: lib - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} if: | github.repository == 'novnc/noVNC' && github.event_name == 'release' && !github.event.release.prerelease - run: npm publish --access public --tag beta - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} if: | github.repository == 'novnc/noVNC' && github.event_name == 'release' && github.event.release.prerelease - run: npm publish --access public --tag dev - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} if: | github.repository == 'novnc/noVNC' && github.event_name == 'push' &&