-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
54 lines (54 loc) · 1.06 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
44
45
46
47
48
49
50
51
52
53
54
project_name: sshare
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm
- arm64
binary: sshare
main: ./cmd/sshare
ldflags:
- -s
- -w
universal_binaries:
- replace: true
archives:
- format: tar.gz
checksum:
name_template: "checksums.txt"
changelog:
filters:
exclude:
- "^docs:"
- "^test:"
release:
github:
owner: ""
name: ""
draft: false
replace_existing_draft: true
prerelease: auto
mode: replace
skip_upload: false
brews:
- tap:
owner: willfantom
name: homebrew-tap
branch: main
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
commit_author:
name: goreleaserbot
email: [email protected]
commit_msg_template: "Formula update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://github.com/willfantom/{{ .ProjectName }}"
description: "Quickly share cURLable links to your SSH agent's keys!"
license: "MIT"
folder: Formula
skip_upload: false