-
Notifications
You must be signed in to change notification settings - Fork 14
/
.goreleaser.yaml
55 lines (46 loc) · 927 Bytes
/
.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
version: 2
release:
draft: false
prerelease: true
before:
hooks:
- go mod download
builds:
- <<: &build_defaults
env:
- CGO_ENABLED=0
ldflags: null
- <<: *build_defaults
id: macos
goos: [darwin]
goarch: [amd64, arm64]
- <<: *build_defaults
id: linux
goos: [linux]
goarch: [386, arm, amd64, arm64]
- <<: *build_defaults
id: windows
goos: [windows]
goarch: [amd64, arm64]
- <<: *build_defaults
id: freebsd
goos: [freebsd]
goarch: [386, amd64]
checksum:
name_template: "changelog-from-release_{{.Version}}_checksums.txt"
algorithm: sha256
archives:
- <<: &archives_defaults
files:
- README.md
- CHANGELOG.md
- LICENSE.txt
id: nix
builds: [macos, linux, freebsd]
format: tar.gz
- <<: *archives_defaults
id: windows
builds: [windows]
format: zip
changelog:
disable: true