From 5e91e3e4ced63a8ab56e01fa6a099acef319ab8d Mon Sep 17 00:00:00 2001 From: Doug Richar Date: Wed, 14 Jan 2026 16:04:16 -0500 Subject: [PATCH] fix(ci): configure registry-url and update npm for OIDC publishing The OIDC token exchange succeeded during verification but failed during publish with ENEEDAUTH. This fix: - Adds registry-url to setup-node action to properly configure OIDC context - Updates npm to latest version to ensure OIDC trusted publishing support See: https://github.com/npm/cli/issues/8730 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 479a97f..186f74d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,8 +30,12 @@ jobs: uses: actions/setup-node@v6 with: node-version: 22 + registry-url: 'https://registry.npmjs.org' cache: 'pnpm' + - name: Update npm to latest + run: npm install -g npm@latest + - name: Install dependencies run: pnpm install --frozen-lockfile