Skip to content

Commit 5b7a8bc

Browse files
authored
Merge pull request #7 from tschaub/brew
Publish Homebrew formula
2 parents fad8a60 + 2e6d4dd commit 5b7a8bc

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ jobs:
3232
args: release --clean
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}

.goreleaser.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,15 @@ snapshot:
3131
changelog:
3232
sort: asc
3333
use: github-native
34+
brews:
35+
- tap:
36+
owner: tschaub
37+
name: homebrew-tap
38+
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
39+
url_template: "https://github.com/tschaub/{{ .ProjectName }}/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
40+
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
41+
homepage: "https://github.com/tschaub/{{ .ProjectName }}"
42+
description: "Serve files via HTTP."
43+
license: "MIT"
44+
test: |
45+
system "#{bin}/serve --help"

0 commit comments

Comments
 (0)