Skip to content

Commit 125bd6e

Browse files
committed
feat: Add Homebrew release
Configure goreleaser to automatically publish releases to Homebrew through a dedicated tap repository. This makes the tool installable via `brew install epilande/tap/grab` command.
1 parent 5ed0e59 commit 125bd6e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.goreleaser.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,19 @@ archives:
3333
formats: [zip]
3434
checksum:
3535
name_template: "checksums.txt"
36+
brews:
37+
- name: "{{ .ProjectName }}"
38+
homepage: "https://github.com/epilande/codegrab"
39+
description: "An interactive CLI tool for selecting and bundling code into a single, LLM-ready output file"
40+
license: "MIT"
41+
repository:
42+
owner: epilande
43+
name: homebrew-tap
44+
branch: main
45+
commit_author:
46+
name: goreleaserbot
47+
email: bot@goreleaser.com
48+
test: |
49+
system "#{bin}/grab --version"
50+
install: |
51+
bin.install "grab"

0 commit comments

Comments
 (0)