-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
.goreleaser.yml
81 lines (77 loc) · 1.57 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
builds:
- id: pget
main: ./cmd/pget/main.go
binary: pget
env:
- CGO_ENABLED=0
ldflags: -s -w -X main.version={{.Version}}
goos:
- linux
- darwin
- windows
goarch:
- "386"
- amd64
- arm
- arm64
goarm:
- "6"
- "7"
ignore:
- goos: darwin
goarch: "386"
- goos: linux
goarch: arm
goarm: "7"
- goos: windows
goarch: arm
goarm: "7"
archives:
- builds:
- pget
name_template: >-
pget_
{{ .Version }}_
{{- if eq .Os "darwin" }}macOS
{{- else if eq .Os "linux" }}Linux
{{- else if eq .Os "windows" }}Windows
{{- else }}{{ title .Os }}{{ end }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
brews:
- name: pget
repository:
owner: Code-Hex
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
homepage: https://github.com/Code-Hex/pget
description: The fastest file download client
folder: Formula
install: |
bin.install "pget"
nfpms:
- license: MIT License
maintainer: Kei Kamikawa <x00.x7f.x86@gmail.com>
homepage: https://github.com/Code-Hex/pget
bindir: /usr/local/bin
description: The fastest file download client
formats:
- apk
- deb
- rpm
checksum:
name_template: 'pget_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch