fix(ci): PR-based bump-release and repair v4 release pipeline - #567
Merged
carlospedreira merged 1 commit intoJul 2, 2026
Merged
Conversation
carlospedreira
approved these changes
Jul 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Linked issue
Closes #393
Summary of changes
The scheduled Bump & Release workflow has failed 9 weeks straight because it pushed the
version commit + tag directly to protected
main(GH006), and stale tags causedtag already existson re-runs. This reworks the pipeline to the PR-based flow and repairsrelease.ymlfor the v4 (git-checkout + shim) layout.bump-release.yml— no longer pushes tomain:release/vX.Y.ZPR instead (branch push is allowed; onlymainis protected).workflow_dispatchalways bumps.CHANGELOG.md[Unreleased]block to a dated section and re-seeds a fresh scaffold.release.yml— triggers on the merge and repairs the v4 build:push: mainfiltered toversion.json(+workflow_dispatchfor manual re-cuts).version.json; idempotency guard skips if the release/tag exists.pwsh install.ps1test step; builds Studio UI fromsrc/studio-ui.--generate-notes;gh release create --target $GITHUB_SHAcreates the tag itself.Resulting flow: bump PR opens → a maintainer approves + merges → the
version.jsonchange landson
main→release.ymlfires on that push and cutsvX.Y.Z. No direct push tomain.Testing notes
Post-merge, to validate on the real repo:
workflow_dispatchBump & Release → approve + merge thePR → confirm Release & Publish fires on the
version.jsonpush and creates the release; re-run itfor the same version to confirm the idempotency guard skips.
Checklist