ci: add manual release workflow - #2
Merged
Merged
Conversation
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.
GitHub Actions could only publish these plugins after someone created and pushed a matching
v*tag. This adds a manual release entry point so maintainers can select a patch, minor, or major bump in the Actions UI; the workflow updates the version metadata, commits and tags it, then reuses the existing cross-platform packaging and release job. Existing tag-triggered releases remain supported.Validation
git diff --checkpasses.Checklist
apps/web/), I have added or updated Playwright e2e tests inapps/web/e2e/and verified them withmake test-e2e.docs/public/**and updated them or noted why no docs change is needed.Summary by cubic
Adds a manual release workflow so maintainers can trigger patch/minor/major releases from GitHub Actions without pre-creating tags. It calculates the next version, updates metadata and changelog, commits and tags, then builds and publishes; tag-triggered releases still work.
workflow_dispatchwithbump(patch/minor/major) anddry_runinputs.main) computes next SemVer frommanifest.yamland latestv*tag, updatesmanifest.yaml,Makefile,README.md, generatesCHANGELOG.md, then commits and tags.softprops/action-gh-release; runs for tag pushes and successful manual runs.Written for commit d191fbd. Summary will update on new commits.