From 7b0002c75e9cc6f234ea22fbf0d87a625b267a0b Mon Sep 17 00:00:00 2001 From: TM Hospitality Strategies <154358121+TMHSDigital@users.noreply.github.com> Date: Sun, 24 May 2026 22:07:26 -0400 Subject: [PATCH] fix: add NODE_AUTH_TOKEN to npm publish step Without this env var the publish step has no credentials and fails at npm auth. Matches the publish.yml pattern used in Developer-Tools-MCP. Signed-off-by: fOuttaMyPaint --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a72dd48..e46df16 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -26,3 +26,5 @@ jobs: - run: npm run build - run: npm test - run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}