forked from Everbridge/generate-secure-pillar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
94 lines (75 loc) · 1.96 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
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
dist: packages
builds:
-
binary: generate-secure-pillar
goos:
- windows
- darwin
- linux
goarch:
- amd64
archive:
replacements:
darwin: Darwin
linux: Linux
windows: Windows
amd64: x86_64
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
snapshot:
name_template: SNAPSHOT-{{.Commit}}
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brew:
# Reporitory to push the tap to.
github:
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"
nfpm:
# 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
dependencies:
- gnupg1
# Formats to be generated.
formats:
- deb
- rpm
sign:
cmd: gpg
artifacts: checksum
args: ["-u", "Everbridge Open Source", "--output", "${signature}", "--detach-sign", "${artifact}"]