From 8a81c788f52aa4d0da8d64ae6fa5897b9b72049d Mon Sep 17 00:00:00 2001 From: Hubert Ott Date: Thu, 5 Mar 2026 13:25:34 +1030 Subject: [PATCH] Update NPM token secret in release workflow Feels like we should be using the GH Global secret thats 3 months old vs the 5yr old one specific to this repo? --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a825c7..dc38a17 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - run: npm run build - run: npm publish --access public env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - run: git push env: github-token: ${{ secrets.GITHUB_TOKEN }}