From 0d67b71ea607455993f9089768642ec03bbfa158 Mon Sep 17 00:00:00 2001 From: Andrew Fischer Date: Fri, 31 Oct 2025 15:27:55 -0700 Subject: [PATCH] chore: update GitHub secret reference for beta npm publishing Replace BETA_TOKEN with BITGO_BETA_PUBLISH_TOKEN in the publish workflow to align with updated GitHub Actions secret naming conventions. Ticket: DO-17034 --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8f02bc6c71..182203e4cc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -46,7 +46,7 @@ jobs: git checkout -b ${{ env.preid }}-$(git rev-parse --short HEAD) echo "email=${{ secrets.BETA_EMAIL }}" > .npmrc echo "@bitgo-beta:registry=https://registry.npmjs.org" >> .npmrc - echo "//registry.npmjs.org/:_authToken=${{ secrets.BETA_TOKEN }}" >> .npmrc + echo "//registry.npmjs.org/:_authToken=${{ secrets.BITGO_BETA_PUBLISH_TOKEN }}" >> .npmrc echo "//registry.npmjs.org/:always-auth=true" >> .npmrc - name: Prepare Release