...
1# This is an example goreleaser.yaml file with some sane defaults.
2# Make sure to check the documentation at http://goreleaser.com
3before:
4 hooks:
5 # You may remove this if you don't use go modules.
6 - go mod download
7builds:
8 - env:
9 - CGO_ENABLED=0
10 targets:
11 - linux_amd64
12 - linux_arm64
13 - linux_386
14 - darwin_amd64
15 - darwin_arm64
16 - windows_amd64
17 - windows_arm64
18 - windows_386
19
20checksum:
21 name_template: 'checksums.txt'
22snapshot:
23 name_template: "{{ .Tag }}-next"
24changelog:
25 sort: asc
26 filters:
27 exclude:
28 - '^docs:'
29 - '^test:'
View as plain text