-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
.goreleaser.yml
64 lines (62 loc) · 1.33 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
project_name: blocky
before:
hooks:
- go mod tidy
- go install github.com/dosgo/zigtool/zigcc@latest
- go install github.com/dosgo/zigtool/zigcpp@latest
builds:
- goos:
- linux
- windows
- freebsd
- netbsd
- openbsd
- darwin
goarch:
- amd64
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
ldflags:
- -w
- -s
- -X github.com/0xERR0R/blocky/util.Version=v{{.Version}}
- -X github.com/0xERR0R/blocky/util.BuildTime={{time "20060102-150405"}}
- -X github.com/0xERR0R/blocky/util.Architecture={{.Arch}}{{.Arm}}
env:
- CGO_ENABLED=0
- CC=zigcc
- CXX=zigcpp
release:
draft: true
archives:
- format_overrides:
- goos: windows
format: zip
name_template: >-
{{ .ProjectName }}_v
{{- .Version }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
snapshot:
name_template: "{{ .Version }}-{{.ShortCommit}}"
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
changelog:
use: github
sort: asc
filters:
exclude:
- '^docs:'
- '^chore:'
- '^test:'