-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
92 lines (84 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
88
89
90
91
92
project_name: awsec
before:
hooks:
- go mod download
builds:
-
id: "client"
dir: "."
ldflags:
- -s -w -X main.version={{.Version}} -X main.date={{.CommitDate}}
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- freebsd
goarch:
- amd64
- arm64
release:
prerelease: true
archives:
- replacements:
darwin: Darwin
linux: Linux
amd64: x86_64
wrap_in_directory: true
format_overrides:
- goos: darwin
format: tar.xz
- goos: linux
format: tar.xz
files:
- LICENSE
- README.md
- policies/*
brews:
-
tap:
owner: grimdork
name: homebrew-tools
commit_author:
name: Urethramancer
email: github@grimdork.net
homepage: "https://github.com/grimdork/awsec"
description: "Store secrets in AWS Parameter Store."
license: "MIT"
skip_upload: auto
nfpms:
-
replacements:
darwin: macOS
linux: Linux
vendor: grimdork.net
homepage:
maintainer: Ronny Bangsund <github@grimdork.net>
description:
formats:
- deb
- rpm
dependencies:
bindir: /usr/bin
section: contrib
priority: extra
contents:
- src: LICENSE
dst: /usr/share/doc/awsec/LICENSE
- src: README.md
dst: /usr/share/doc/awsec/README.md
- src: policies/*
dst: /usr/share/doc/awsec/examples/policies/
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
signs:
- artifacts: checksum
args: ["--batch", "-u", "{{ .Env.GPG_FINGERPRINT }}", "--output", "${signature}", "--detach-sign", "${artifact}"]