From ee1574fecd1074c871638531d4590f8a6ea18119 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 30 Mar 2026 15:07:55 +0200 Subject: [PATCH] chore: remove npm token setup from release workflow Removed npm authentication token configuration from workflow. --- .github/workflows/release-please.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index f924f6c..b1eac77 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -39,11 +39,7 @@ jobs: run: yarn build if: ${{ steps.release.outputs.release_created }} - - run: npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}} - - name: Publish to npm - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} run: npm publish --access public if: ${{ steps.release.outputs.release_created }}