From dbb8129a4f68c31fa18e356b59fe83edc9606c5c Mon Sep 17 00:00:00 2001 From: Zefir Date: Mon, 8 Dec 2025 18:32:09 +0200 Subject: [PATCH] Removed NODE_AUTH_TOKEN from NPM publish steps Removed NODE_AUTH_TOKEN environment variable from NPM publish steps in favour of OpenID Connect authentication. Signed-off-by: Zefir --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b10856..a39a90b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,15 +124,11 @@ jobs: if: "!github.event.release.prerelease" working-directory: ./package/package run: npm publish --provenance --access public - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - name: Publish release candidate to NPM if: github.event.release.prerelease working-directory: ./package/package run: npm publish --provenance --access public --tag rc - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - name: Generate docs if: "!github.event.release.prerelease"