brew tap qubernetic/tap
brew install <formula>Or install directly without tapping first:
brew install qubernetic/tap/<formula>| Formula | Description | Repository |
|---|---|---|
copia |
CLI for Copia — source control for industrial automation | copia-cli |
Formulae in this tap are automatically published by GoReleaser when a new version is tagged in the source repository. No manual intervention needed.
# Update the tap to get latest formulae
brew update
# Reinstall a specific version
brew reinstall qubernetic/tap/<formula>
# Check formula info
brew info qubernetic/tap/<formula>To publish a new tool to this tap, add a brews section to your project's .goreleaser.yml:
brews:
- repository:
owner: qubernetic
name: homebrew-tap
homepage: "https://github.com/qubernetic/your-project"
description: "Your tool description"
license: "MIT"
install: |
bin.install "your-binary"
test: |
system "#{bin}/your-binary", "--version"The formula will be automatically created/updated on each tagged release.