-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
73 lines (68 loc) · 1.35 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
project_name: qgmail
builds:
-
env:
- CGO_ENABLED=0
binary: qgmail
id: qgmail
goos:
- darwin
- linux
- windows
goarch:
- amd64
- 386
- arm
- arm64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
draft: true
archives:
-
id: qgmail
builds: ['qgmail']
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}_v{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Linux
windows: Windows
files:
- README.md
- LICENSE
nfpms:
-
id: qgmail
builds: ['qgmail']
formats:
- deb
vendor: "utkarshverma"
homepage: "https://github.com/utkarshverma/qgmail"
maintainer: "Utkarsh Verma <[email protected]>"
description: "A fast and lightweight CLI tool which brings the power of Gmail API to your terminal."
license: "GPL-3.0"
file_name_template: "{{.ProjectName}}_v{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Linux
windows: Windows