-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path.goreleaser.yml
51 lines (51 loc) · 926 Bytes
/
.goreleaser.yml
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
# See documentation at http://goreleaser.com
version: 2
builds:
- main: ./cmd/xc
id: xc
binary: xc
goos:
- darwin
- linux
- windows
goarch:
- 386
- amd64
- arm64
- arm
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: 386
- goos: linux
goarch: arm
goarm: 6
brews:
-
ids:
- brew
goarm: 7
repository:
owner: joerdav
name: homebrew-xc
description: Self documenting task runner
homepage: https://github.com/joerdav/xc
license: "MIT"
signs:
- artifacts: checksum
args: ["--batch", "-u", "{{ .Env.GPG_FINGERPRINT }}", "--output", "${signature}", "--detach-sign", "${artifact}"]
archives:
- format: binary
id: xc
- format: tar.gz
id: brew
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'