Skip to content
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
86bffec
ci(release): Switch from action-prepare-release to Craft
BYK Jan 9, 2026
04fd9dc
ci(release): Restore GitHub App token authentication
BYK Jan 9, 2026
2e7c5c5
fix: Pin actions to SHA and add permissions blocks
BYK Jan 10, 2026
627ec46
fix: Add packages:write permission for GHCR workflows
BYK Jan 10, 2026
e0207bc
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
c33adb1
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
239d9cb
fix: Clean up action version comments
BYK Jan 12, 2026
c139dfe
Update Craft SHA to 1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce
BYK Jan 13, 2026
cdfec01
Add explicit permissions block to build.yml
BYK Jan 13, 2026
426849b
Add explicit permissions block to ci.yml
BYK Jan 13, 2026
66d8028
Add explicit permissions block to codeql-analysis.yml
BYK Jan 13, 2026
5c739bd
Add explicit permissions block to rust-toolchain-update.yml
BYK Jan 13, 2026
1a3a9ea
Add explicit permissions block to test_node.yml
BYK Jan 13, 2026
2efc5b5
Revert permissions changes to build.yml
BYK Jan 13, 2026
635e0b5
Revert permissions changes to ci.yml
BYK Jan 13, 2026
1be85ab
Revert permissions changes to codeql-analysis.yml
BYK Jan 13, 2026
ccbcb2e
Revert permissions changes to rust-toolchain-update.yml
BYK Jan 13, 2026
3b0731f
Revert permissions changes to test_node.yml
BYK Jan 13, 2026
8cdafc8
fix: clean up extraneous changes from migration script
BYK Jan 13, 2026
a310324
fix: revert extraneous changes to non-release workflow files
BYK Jan 14, 2026
eb1d97b
fix: clean up release.yml formatting and version comments
BYK Jan 14, 2026
43ca365
build(craft): Update Craft action to c6e2f04
BYK Jan 14, 2026
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
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@ on:
workflow_dispatch:
inputs:
version:
description: Version to release
required: true
description: Version to release (or "auto")
required: false
Comment on lines 5 to +7

This comment was marked as outdated.

force:
description: Force a release even when there are release-blockers (optional)
required: false
merge_target:
description: Target branch to merge into. Uses the default branch as a fallback (optional)
required: false
permissions:
contents: write
pull-requests: write

jobs:
release:
runs-on: ubuntu-24.04
Expand All @@ -27,7 +31,7 @@ jobs:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/action-prepare-release@c8e1c2009ab08259029170132c384f03c1064c0e # 1.6.6
uses: getsentry/craft@c6e2f04939b6ee67030588afbb5af76b127d8203 # v2
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
Expand Down