From 1bc97b7ab2aa516b1669b473d90f548945a91721 Mon Sep 17 00:00:00 2001 From: Mat Milbury Date: Mon, 27 Apr 2026 10:08:49 +0200 Subject: [PATCH] fix(ci): rename workflow to release.yml for npm OIDC trust The npm trusted publisher is configured for .github/workflows/release.yml. Moving publish back to this path and removing the empty NODE_AUTH_TOKEN env (which was overriding the OIDC flow with an empty token). Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/{release-please.yml => release.yml} | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) rename .github/workflows/{release-please.yml => release.yml} (87%) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release.yml similarity index 87% rename from .github/workflows/release-please.yml rename to .github/workflows/release.yml index 55fd777..51744a3 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Release Please +name: Release on: push: @@ -36,10 +36,6 @@ jobs: registry-url: https://registry.npmjs.org - name: Publish plugin run: npm publish --provenance --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish skill package working-directory: packages/skill run: npm publish --provenance --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}