From 1f12b1e6357f4bf7e52db9c6b62a96309621020a Mon Sep 17 00:00:00 2001 From: Zefir Date: Mon, 8 Dec 2025 18:35:37 +0200 Subject: [PATCH] Remove NODE_AUTH_TOKEN from NPM publish steps Removed NODE_AUTH_TOKEN environment variable from NPM publish steps. Signed-off-by: Zefir --- .github/workflows/ci.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8277942..ca2c9ed 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -145,15 +145,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"