From 6daf8efd8e8a63f75d0ffa92446dae79f8462bd0 Mon Sep 17 00:00:00 2001 From: cpacker Date: Wed, 26 Nov 2025 19:28:26 -0800 Subject: [PATCH] fix: patch public flow --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1eaeb2..b09e0fa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,6 +32,14 @@ jobs: with: bun-version: 1.3.0 + - name: Setup Node (for npm OIDC publishing) + uses: actions/setup-node@v4 + with: + node-version: "22" + + - name: Upgrade npm for OIDC support + run: npm install -g npm@latest + - name: Bump version id: version run: | @@ -109,4 +117,4 @@ jobs: fail_on_unmatched_files: true - name: Publish to npm - run: bun publish --access public --no-git-checks + run: npm publish --access public