-
Notifications
You must be signed in to change notification settings - Fork 3
/
.goreleaser.yml
104 lines (85 loc) · 2.18 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
env_files:
# use only one or release will fail!
github_token: ~/.config/goreleaser/github_token
dist: packages
builds:
- binary: generate-secure-pillar
targets:
- windows_amd64
- windows_arm64
- darwin_amd64
- darwin_arm64
- linux_amd64
- openbsd_amd64
- openbsd_arm64
- netbsd_amd64
- netbsd_arm64
- freebsd_amd64
- freebsd_arm64
archives:
- id: main
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
universal_binaries:
- replace: true
snapshot:
name_template: SNAPSHOT-{{.Commit}}
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
brews:
- # Repository to push the tap to.
repository:
owner: esilva-everbridge
name: homebrew-generate-secure-pillar
skip_upload: false
dependencies:
- gpg1
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: Ed Silva
email: [email protected]
# Folder inside the repository to put the formula.
# Default is the root folder.
folder: Formula
# Your app's homepage.
# Default is empty.
homepage: https://github.com/Everbridge/generate-secure-pillar
# Your app's description.
# Default is empty.
description: "Create and update encrypted content or decrypt encrypted content in YAML files"
nfpms:
- # Your app's vendor.
# Default is empty.
vendor: Everbridge, Inc.
# Your app's homepage.
# Default is empty.
homepage: https://github.com/Everbridge/generate-secure-pillar
# Your app's maintainer (probably you).
# Default is empty.
maintainer: "Ed Silva <[email protected]>"
# Your app's description.
# Default is empty.
description: "Create and update encrypted content or decrypt encrypted content in YAML files"
# Your app's license.
# Default is empty.
license: MIT
# Formats to be generated.
formats:
- deb
- rpm
signs:
- cmd: gpg
artifacts: checksum
args:
[
"-u",
"Everbridge Open Source",
"--output",
"${signature}",
"--detach-sign",
"${artifact}",
]