-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.goreleaser.yml
99 lines (94 loc) · 2.3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
project_name: zmk-viewer
builds:
- skip: true
goos:
- "linux"
- "windows"
- "darwin"
release:
github:
owner: mrmarble
name: zmk-viewer
archives:
- format: tar.gz
id: darwin-amd64
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-darwin-amd64'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-darwin-amd64'
- format: tar.gz
id: darwin-arm64
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-darwin-arm64'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-darwin-arm64'
- format: tar.gz
id: linux-386
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-linux-386'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-linux-386'
- format: tar.gz
id: linux-amd64
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-linux-amd64'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-linux-amd64'
- format: tar.gz
id: linux-arm64
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-linux-arm64'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-linux-arm64'
- format: zip
id: windows-386
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-windows-386'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-windows-386.exe'
- format: zip
id: windows-amd64
meta: true
wrap_in_directory: true
name_template: '{{ .ProjectName }}-{{ .Version }}-windows-amd64'
files:
- LICENSE
- README.md
- '{{ .ProjectName }}-v{{ .Version }}-windows-amd64.exe'
checksum:
name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: Others
order: 999