-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
72 lines (70 loc) · 1.52 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
# .goreleaser.yml
#
# test the config:
# goreleaser check
# goreleaser release --skip=publish --skip=validate --clean
version: 2
before:
hooks:
- go mod tidy
builds:
- id: FreeBSD
goos: ["freebsd"]
goarch: ["amd64"]
- id: Linux_Intel
goos: ["linux"]
goarch: ["amd64"]
- id: Linux_ARM
goos: ["linux"]
goarch: ["arm64"]
- id: macOS
goos: ["darwin"]
goarch: ["amd64", "arm64"]
- id: Windows
goos: ["windows"]
goarch: ["amd64"]
universal_binaries:
- id: macOS
name_template: "{{ .ProjectName }}"
replace: true
archives:
- id: FreeBSD
builds: ["FreeBSD"]
format: tar.gz
files:
- none*
name_template: "{{ .ProjectName }}_FreeBSD_Intel"
- id: Linux
builds: ["Linux_Intel", "Linux_ARM"]
format: tar.gz
files:
- none*
name_template: "{{ .ProjectName }}_Linux_{{ .Arch }}"
- id: macOS
builds: ["macOS"]
format: tar.gz
files:
- none*
name_template: "{{ .ProjectName }}_macOS"
- id: Windows
builds: ["Windows"]
format: zip
files:
- none*
name_template: "{{ .ProjectName }}_Windows_Intel"
nfpms:
- id: Linux
builds: ["Linux_Intel"]
file_name_template: "{{ .ProjectName }}"
vendor: Ben Garrett.
homepage: https://github.com/bengarrett/zipcmt
maintainer: Ben Garrett <[email protected]>
description: A batch viewer and extractor for large collections of zip archives.
license: LGPL 3.0
formats:
- apk
- deb
- rpm
- archlinux
changelog:
use: git