-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
77 lines (77 loc) · 1.13 KB
/
.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: 2
project_name: runzip
before:
hooks:
- go mod download
- go generate ./...
builds:
- id: runzip-all
env:
- CGO_ENABLED=0
goos:
- aix
- darwin
- dragonfly
- freebsd
- illumos
- js
- linux
- netbsd
- openbsd
- plan9
- solaris
- wasip1
- windows
goarch:
- 386
- amd64
- arm
- arm64
- loong64
- mips
- mips64
- mips64le
- mipsle
- ppc64
- ppc64le
- riscv64
- s390x
- wasm
goarm:
- 6
- 7
goamd64:
- v1
- v2
- v3
- v4
- id: runzip-ios-with-sdk
env:
- CGO_ENABLED=1
goos:
- ios
goarch:
- arm64
- id: runzip-android-no-sdk
env:
- CGO_ENABLED=0
goos:
- android
goarch:
- arm64
archives:
- id: runzip
format: tar.gz
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksums.txt"
snapshot:
version_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"