-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
47 lines (42 loc) · 1.07 KB
/
.goreleaser.yaml
File metadata and controls
47 lines (42 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
project_name: sprout
builds:
- id: sprout
main: ./apps/sprout/cmd/sprout
binary: sprout
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
goarch:
- amd64
- arm64
ldflags:
- -s -w -X sprout/internal/sprout.Version={{ .Version }}
archives:
- id: binaries
builds:
- sprout
format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
checksum:
name_template: checksums.txt
changelog:
use: github-native
brews:
- name: sprout
commit_author:
name: github-actions[bot]
email: github-actions[bot]@users.noreply.github.com
repository:
owner: "{{ .Env.HOMEBREW_TAP_OWNER }}"
name: homebrew-sprout
branch: "{{ .Env.HOMEBREW_TAP_BRANCH }}"
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
directory: Formula
homepage: "https://github.com/{{ .Env.GITHUB_REPOSITORY }}"
description: "Git worktree manager with terminal UI and tmux workflows."
install: |
bin.install "sprout"
test: |
system "#{bin}/sprout", "version"