From fc11a30c73eebfd987cb9e1f039d87e5914c5112 Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Sun, 8 Feb 2026 14:03:52 +0500 Subject: [PATCH] chore: remove npm token from workflow env --- .github/workflows/publish.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2393a8c..17f410c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ name: Publish on: push: tags: - - 'v*' + - "v*" jobs: publish: @@ -36,8 +36,6 @@ jobs: # Publish with the appropriate tag - name: Publish to npm run: npm publish --tag ${{ steps.version.outputs.NPM_TAG }} - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # Only create GitHub releases for stable versions - name: Create GitHub Release