Homebrew formulae for installation of Block open source tools via the Homebrew package manager.
If you don't have Homebrew installed, install that first: https://brew.sh/
Next:
brew tap block/tap
brew install <FORMULA>
You can also install formulae directly via
brew install block/tap/<FORMULA>
This tap uses one shared GitHub Actions workflow to bump any existing formula in place.
- Add a formula at
Formula/<formula>.rb. - Include
url,sha256, andversionfields in the formula. - Trigger the shared bump workflow manually:
gh workflow run bump-formula.yaml \
-f repo=<org>/<repo> \
-f formula=<formula> \
-f tag=vX.Y.Z \
-f artifact_url=https://github.com/<org>/<repo>/releases/download/vX.Y.Z/<asset.tar.gz> \
-f sha256=<optional-sha256>- Watch the run:
gh run list --workflow bump-formula.yaml --limit 1
gh run watch <run-id>The workflow updates only the target formula's existing url, sha256, and version fields, then opens a PR.
If sha256 is omitted, the workflow downloads artifact_url and computes it automatically.
After the workflow succeeds, users can install with:
brew install block/tap/<formula>