forked from peltho/tufw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
56 lines (56 loc) · 1.32 KB
/
.goreleaser.yaml
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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
env:
- GO111MODULE=on
before:
hooks:
# You may remove this if you don't use go modules.
- go mod download
- go mod tidy
builds:
- main: ./cmd/tufw/main.go
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
archives:
- name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
files:
- README.md
snapshot:
name_template: "{{ .Version }}-SNAPSHOT-{{ .CommitTimestamp }}-{{ .ShortCommit }}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
nfpms:
-
id: packages
homepage: https://github.com/peltho/tufw
maintainer: Thomas Pellegatta <[email protected]>
description: "A terminal user interface for ufw"
license: MIT
formats:
- deb
- rpm
dependencies:
- ufw
aurs:
-
name: tufw-bin
description: "Terminal UI for ufw"
homepage: "https://github.com/peltho/tufw"
maintainers:
- "Thomas Pellegatta <[email protected]>"
license: "MIT"
git_url: "ssh://[email protected]/tufw-git.git"
skip_upload: false
depends:
- ufw
commit_author:
name: goreleaserbot
email: [email protected]