From 327b043adbb05cd1579afdf3a8d87fb5ae9b6a54 Mon Sep 17 00:00:00 2001 From: Colton Gerke Date: Tue, 12 May 2026 13:19:59 -0500 Subject: [PATCH] Add npm_token secret to audiences-react workflow We need to explicitly define this secret so this Action can authenticate against our internal NPM registry. --- .github/workflows/audiences-react.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/audiences-react.yml b/.github/workflows/audiences-react.yml index 827d9193..83a1acd0 100644 --- a/.github/workflows/audiences-react.yml +++ b/.github/workflows/audiences-react.yml @@ -10,4 +10,5 @@ jobs: package: ${{ github.workflow }} workdir: ${{ github.workflow }} node: '["22"]' - secrets: inherit + secrets: + npm_token: ${{ secrets.POWERHOME_NPM_REGISTRY_PASSWORD }}