From 3b566ef1719f5f45520922412cd9d6f603845450 Mon Sep 17 00:00:00 2001 From: alban bertolini Date: Tue, 20 Jan 2026 14:32:41 +0100 Subject: [PATCH] ci: add NPM_TOKEN to release step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The NPM_TOKEN is required for semantic-release to publish packages when trusted publishing is not configured on npm. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a0aa670f..e89e8c361 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -202,6 +202,7 @@ jobs: run: '$(yarn bin)/multi-semantic-release --deps.bump=override' env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}