-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
77 lines (70 loc) · 1.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
# .goreleaser.yml
builds:
-
id: "am-dbg"
env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
main: ./tools/cmd/am-dbg
binary: am-dbg
-
id: "am-dbg-ssh"
env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
main: ./tools/cmd/am-dbg-ssh
binary: am-dbg-ssh
archives:
-
id: "am-dbg"
format: tar.gz
name_template: "am-dbg_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
# dont add readmes etc
files: [""]
builds:
- am-dbg
-
id: "am-dbg-ssh"
format: tar.gz
name_template: "am-dbg-ssh_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
# dont add readmes etc
files: [""]
builds:
- am-dbg
- am-dbg-ssh
checksum:
name_template: 'checksums.txt'
release:
github:
owner: pancsta
name: asyncmachine-go
draft: true
replace_existing_draft: true
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^chore:'
- '^refactor:'
- '^style:'
- '^ci:'
- '^perf:'
- '^revert:'
snapshot:
name_template: "{{ .Tag }}-next"