This repo publishes new bitloops versions to Homebrew via formula updates in this tap.
- Release a new CLI version in
bitloops/bitloops(push tag likev0.1.0). - Wait for the CLI release workflow to:
- build artifacts
- publish GitHub Release assets
- publish
checksums-sha256.txt - open/update a PR in
bitloops/homebrew-tap
- In the tap PR, verify:
Formula/bitloops.rbhas the new version URLs- macOS + Linux checksums are updated (arm + intel)
audit/testsworkflows are green
- Merge the tap PR to
main.
After merge, the new version is available from the tap.
Fresh install:
brew update
brew install bitloops/tap/bitloopsUpgrade existing install:
brew update
brew upgrade bitloops/tap/bitloopsVerify installed version:
bitloops --version- Open a PR in this repo updating:
Formula/bitloops.rb.templateFormula/bitloops.rb
- Run checks locally:
brew tap bitloops/tap "$(pwd)"
brew audit --strict --new bitloops/tap/bitloops
brew install bitloops/tap/bitloops
brew test bitloops/tap/bitloops- Merge PR after CI passes.