-
Notifications
You must be signed in to change notification settings - Fork 17
/
.goreleaser.yml
68 lines (59 loc) · 1.4 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
# all available options: https://goreleaser.com/customization/
project_name: summon-aws-secrets
before:
hooks: []
builds:
- id: summon-aws-secrets
binary: summon-aws-secrets
env:
- CGO_ENABLED=0
goos:
- 'darwin' # MacOS
- 'freebsd'
- 'linux'
- 'netbsd'
- 'openbsd'
- 'solaris'
- 'windows'
goarch:
- amd64
ldflags: []
- id: summon-aws-secrets-arm
binary: summon-aws-secrets
env:
- CGO_ENABLED=0
goos:
- 'darwin' # MacOS
goarch:
- arm64
ldflags: []
archives:
- id: summon-aws-secrets
name_template: "{{.ProjectName}}-{{.Os}}-{{.Arch}}"
format_overrides:
- goos: windows
format: zip
files:
- CHANGELOG.md
- README.md
- LICENSE
- SECURITY.md
brews:
- description: AWS Secrets Manager provider for Summon
homepage: https://github.com/cyberark/summon-aws-secrets
url_template: https://github.com/cyberark/summon-aws-secrets/releases/download/v{{.Version}}/summon-aws-secrets-{{ tolower .Os }}-{{ tolower .Arch }}.tar.gz
install: |
target = lib/"summon"
target.install "summon-aws-secrets"
test: |
system lib/"summon"/"summon-aws-secrets", "-v"
tap:
owner: cyberark
name: homebrew-tools
skip_upload: true
checksum:
name_template: 'SHA256SUMS.txt'
release:
disable: true
changelog:
skip: true