-
Notifications
You must be signed in to change notification settings - Fork 4
/
.goreleaser.yml
66 lines (66 loc) · 1.46 KB
/
.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
builds:
- env:
- CGO_ENABLED=0
main: ./cmd/gomodrun/main.go
goos:
- linux
- darwin
- windows
- freebsd
- netbsd
- openbsd
- dragonfly
goarch:
- 386
- amd64
- arm
- arm64
ignore:
- goos: darwin
goarch: 386
- goos: openbsd
goarch: arm
goarm: 6
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
archives:
- format_overrides:
- goos: windows
format: zip
signs:
- artifacts: checksum
args: ["-u", "6A34CFEE77FE8257C3BB92FE24C3FC5D6987904B", "--output", "${signature}", "--detach-sign", "${artifact}"]
brews:
- tap:
owner: dustinblackman
name: homebrew-tap
folder: Formula
homepage: https://github.com/dustinblackman/gomodrun
description: The forgotten go tool that executes and caches binaries
test: |
system "#{bin}/gomodrun --version"
scoop:
bucket:
owner: dustinblackman
name: scoop-bucket
homepage: https://github.com/dustinblackman/gomodrun
description: The forgotten go tool that executes and caches binaries included in go.mod files
license: MIT
nfpms:
- homepage: https://github.com/dustinblackman/gomodrun
description: The forgotten go tool that executes and caches binaries included in go.mod files
maintainer: Dustin Blackman
license: MIT
vendor: Dustin Blackman
formats:
- deb
- rpm
- apk