Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ runs:
with:
node-version: ${{ inputs.node-version }}
cache: pnpm
registry-url: "https://registry.npmjs.org"

- run: pnpm install --frozen-lockfile
shell: bash
10 changes: 7 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ jobs:
- run: pnpm run build:clean
if: ${{ steps.release.outputs.releases_created }}

- run: pnpm publish --provenance --access public --no-git-checks
# Trusted Publisher (OIDC) needs npm CLI >= 11.5.1; Node 22 ships with
# npm 10.x, and pnpm <11.0.7 does not perform the OIDC exchange. So we
# publish with npm from the upgraded CLI instead of `pnpm publish`.
- run: npm install -g npm@latest
if: ${{ steps.release.outputs.releases_created }}

- run: npm publish --provenance --access public
if: ${{ steps.release.outputs.releases_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading