-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yml
50 lines (46 loc) · 1001 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
project_name: seekerr
builds:
-
binary: seekerr
id: seekerr
ldflags: -s -w -X github.com/lightglitch/seekerr/common/seekerr.buildDate={{.Date}} -X github.com/lightglitch/seekerr/common/seekerr.commitHash={{ .ShortCommit }}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- 386
- arm
- arm64
goarm:
- 7
archives:
-
id: "seekerr"
builds: ['seekerr']
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Linux
windows: Windows
files:
- README.md
- LICENSE
- config/seekerr.sample.yaml
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"
changelog:
skip: true