From 7ae83bac20a627386dc0f397074dcfc794b91cd7 Mon Sep 17 00:00:00 2001 From: Zefir Date: Mon, 8 Dec 2025 18:22:11 +0200 Subject: [PATCH] Remove NPM token authentication Publishing authorisation is now handled via OIDC --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e62f347..53095bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,15 +86,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"