From 1d734a0062f9285f087405635d58eff2ce6f8395 Mon Sep 17 00:00:00 2001 From: jbiskur Date: Tue, 23 Jun 2026 12:53:49 +0100 Subject: [PATCH] fix(ci): restore NODE_AUTH_TOKEN on npm publish step The Blacksmith migration (13f567b) dropped the NODE_AUTH_TOKEN env from the Publish to NPM step, so npm publish ran unauthenticated and 404'd on every release since (4.2.3, 4.2.4 never reached npm). Restore the token env. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6de4b21..6254d4a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,3 +47,5 @@ jobs: - name: Publish to NPM run: npm publish --access public --provenance=false + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}