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
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
# when triggered manually.
fetch-depth: 0
ref: main
# main is a protected branch (require PR + required "build" check).
# The default GITHUB_TOKEN is not an admin and gets rejected on the
# bump commit push. RELEASE_PAT is an admin PAT; since enforce_admins
# is off, its push bypasses protection. Falls back to GITHUB_TOKEN for
# plain tag-push runs (which never push to main). Setup: docs/RELEASE.md
token: ${{ secrets.RELEASE_PAT || github.token }}
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
Loading