-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
72 lines (61 loc) · 1.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
version: 2
report_sizes: true
before:
hooks:
- go mod tidy
gomod:
proxy: true
mod: mod
env:
- GOPROXY=https://proxy.golang.org,direct
- GOSUMDB=sum.golang.org
- GOPRIVATE=github.com/jimmystewpot/in-addr
builds:
- id: "in-addr"
main: ./cmd/in-addr
binary: in-addr
flags:
- -trimpath
- -buildvcs=true
ldflags:
- -w -s
env:
- CGO_ENABLED=0
goos:
- darwin
- freebsd
- linux
- netbsd
- openbsd
- windows
goarch:
- amd64
- arm
- arm64
goarm:
- 6
- 7
goamd64:
- v2
- v3
ignore:
- goos: darwin
goarch: arm
goarm: 6
- goos: darwin
goarch: arm
goarm: 7
mod_timestamp: "{{ .CommitTimestamp }}"
skip: false
no_unique_dist_dir: false
no_main_check: true
checksum:
name_template: '{{ .ArtifactName }}.{{ .Algorithm }}'
algorithm: sha256
split: true
disable: false
extra_files:
- glob: LICENSE
release:
mode: append
skip_upload: false