-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yaml
43 lines (42 loc) · 1.32 KB
/
.goreleaser.yaml
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
before:
hooks:
- go mod tidy
builds:
- binary: unique
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- name: unique
alternative_names:
- unique@{{ .Version }}
- unique@{{ .Major }}.{{ .Minor }}
- unique@{{ .Major }}
description: "Outputs the unique lines of its input"
homepage: "https://github.com/ro-tex/unique"
license: "MIT"
folder: Formula
url_template: "https://github.com/ro-tex/unique/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: goreleaserbot
email: [email protected]
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
repository:
owner: ro-tex
name: homebrew-tap
branch: main
token: "{{ .Env.GITHUB_PERSONAL_AUTH_TOKEN }}"
git:
url: 'https://github.com/ro-tex/homebrew-tap.git'
private_key: '/Users/inovakov/.ssh/id_ed25519'
ssh_command: 'ssh -i /Users/inovakov/.ssh/id_ed25519 -o SomeOption=yes'