-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
.goreleaser.yml
88 lines (79 loc) · 1.72 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
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at https://goreleaser.com
project_name: hostctl
builds:
- id: hostctl
binary: hostctl
main: main.go
env:
- GO111MODULE=on
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
changelog:
sort: desc
filters:
exclude:
- '^docs:'
- '^test:'
- '^Scoop update'
- Merge pull request
- Merge branch
archives:
- format_overrides:
- goos: windows
format: zip
replacements:
amd64: 64-bit
darwin: macOS
before:
hooks:
- go mod tidy
release:
github:
owner: guumaster
name: hostctl
nfpms:
- id: hostctl
builds:
- hostctl
formats:
- deb
vendor: Guumaster
homepage: https://github.com/guumaster/hostctl
maintainer: guumaster <[email protected]>
description: manage your hosts file like a pro
brews:
- name: hostctl
github:
owner: guumaster
name: homebrew-tap
homepage: https://github.com/guumaster/hostctl
description: manage your hosts file like a pro
commit_author:
name: goreleaserbot
email: [email protected]
caveats: "Remember to add sudo to modify your hosts file."
scoop:
bucket:
owner: guumaster
name: hostctl
homepage: https://github.com/guumaster/hostctl
description: manage your hosts file like a pro
license: MIT
snapcrafts:
- id: hostctl
name: hostctl
summary: manage your hosts file like a pro
description: manage your hosts file like a pro.
grade: stable
confinement: strict
license: MIT
publish: true
apps:
hostctl:
plugs: ["network-control"]