forked from 0xERR0R/blocky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
51 lines (50 loc) · 966 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
51
project_name: blocky
before:
hooks:
- go mod tidy
builds:
- goos:
- linux
- windows
- freebsd
- netbsd
- openbsd
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={{.Version}} -X github.com/0xERR0R/blocky/util.BuildTime={{time "20060102-150405"}}
release:
draft: true
archives:
- format_overrides:
- goos: windows
format: zip
replacements:
darwin: macOS
linux: Linux
freebsd: FreeBSD
openbsd: OpenBSD
netbsd: NetBSD
windows: Windows
386: i386
amd64: x86_64
snapshot:
name_template: "{{ .Tag }}-{{.ShortCommit}}"
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'