From e43c4926f8da167887c178c7efac27fb65bf5311 Mon Sep 17 00:00:00 2001 From: mosherBT Date: Mon, 16 Mar 2026 11:38:07 -0400 Subject: [PATCH 1/2] Registry URL set --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f4c3b8f..e139ccb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,6 +83,12 @@ jobs: - name: Setup pnpm uses: ./.github/actions/setup-pnpm + - name: Configure Node.js for npm registry with OIDC + uses: actions/setup-node@v4 + with: + node-version: '24' + registry-url: 'https://registry.npmjs.org' + - name: Publish to NPM using OIDC run: pnpm publish --provenance --access public --no-git-checks From 76c9101edddbc600d28dcead6f4e9cf2989cb67f Mon Sep 17 00:00:00 2001 From: mosherBT Date: Mon, 16 Mar 2026 11:40:26 -0400 Subject: [PATCH 2/2] pretty --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e139ccb..9e3966f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -86,8 +86,8 @@ jobs: - name: Configure Node.js for npm registry with OIDC uses: actions/setup-node@v4 with: - node-version: '24' - registry-url: 'https://registry.npmjs.org' + node-version: "24" + registry-url: "https://registry.npmjs.org" - name: Publish to NPM using OIDC run: pnpm publish --provenance --access public --no-git-checks