Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 886 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (13 loc) · 886 Bytes

Releasing a new cli version

  • Make sure that main is green before proceeding! Then in the CLI directory, update to latest.
git fetch --all
git rebase origin/main
  • Compare the changes from the last release to what is in main. For example. Following semver choose your new version. And use it to tag a version, and push it.
git tag v0.0.0
git push origin tag v0.0.0
  • Github actions will then run, assuming everything goes green. It will create a new pull request in overmind/homebrew-overmind.
  • DO NOT MERGE THE PR YET If this PR is green the PR it will require the 'pr-pull' label to be added. It will trigger another github action / check to run. This will automerge the PR and the release is complete.