Implement SemVer CLI release and Homebrew flow#55
Merged
joyzoursky merged 4 commits intomainfrom Mar 16, 2026
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.
Summary
skytest-agentwith SemVer tag validation, dual-architecture artifacts, and Homebrew formula generation.skytest versionso packaged installs can be validated reliably by formula tests and operators.Changes
.github/workflows/release-cli.ymlto:v*tags or manual version inputvX.Y.Z)arm64andamd64release archiveschecksums.txtHOMEBREW_TAP_PATtools/release/build-cli-macos.sh:skytest-<version>-darwin-<arch>.tar.gzSKYTEST_CLI_VERSIONinto packaged launchertools/release/homebrew-formula-template.rb:skytest versionSKYTEST_CLI_VERSIONin installed launcherskytest versionin parser/entrypoint and parser tests.docs/maintainers/cli-release-homebrew.mdand linked release/install guidance from docs and README.Validation
npm run verify(pass)npm run --workspace @skytest/cli skytest -- version(prints package version)tools/release/build-cli-macos.sh 0.1.0 arm64(pass)tools/release/build-cli-macos.sh 0.1.0 amd64(pass)Breaking Changes
skytest-cli-v*tov*for CLI releases.skytest-<version>-macos-x86_64.tar.gztoskytest-<version>-darwin-{arm64|amd64}.tar.gz.Risks
HOMEBREW_TAP_PATand correctHOMEBREW_TAP_REPO; misconfiguration skips/blocks tap updates.v*tags; non-CLI tag usage in this repo would also trigger this workflow.Follow-ups
v*release workflows.vX.Y.Z) and verifybrew tap+brew install skytestend-to-end.