Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC
contents: write
packages: write
pull-requests: write
issues: read
steps:
- uses: actions/checkout@v5
with:
Expand All @@ -31,6 +37,11 @@ jobs:
- name: Enable turborepo build cache
uses: rharkor/[email protected]

# Ensure npm 11.5.1 or later is installed (for trusted publishing)
# (pnpm publish calls npm under the hood)
- name: Update npm
run: npm install -g npm@latest

# ------------------------------------------------------------
- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down