forked from disneystreaming/ssm-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
99 lines (90 loc) · 2.19 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
release:
before:
hooks:
- go mod tidy
builds:
- id: ssm-run
main: ./cmd/ssm-run/main.go
binary: ssm-run
goos:
- windows
- darwin
- linux
goarch:
- amd64
env:
- CGO_ENABLED=0
- id: ssm-session
main: ./cmd/ssm-session/main.go
binary: ssm-session
goos:
- windows
- darwin
- linux
goarch:
- amd64
env:
- CGO_ENABLED=0
archives:
- builds:
- ssm-run
- ssm-session
replacements:
darwin: Darwin
linux: Linux
windows: Windows
amd64: x86_64
format: tar.gz
format_overrides:
- goos: windows
format: zip
brews:
- github:
owner: disneystreaming
name: homebrew-ssm-helpers
homepage: "https://github.com/disneystreaming/ssm-helpers"
description: "Help manage systems with AWS Systems Manager with management helpers."
folder: Formula
dependencies:
- awscli
- disneystreaming/tap/aws-session-manager-plugin
dockers:
- binaries:
- ssm-run
goos: linux
dockerfile: Dockerfile.ssm-run
image_templates:
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-run:latest"
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-run:{{ .Tag }}"
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-run:{{ .Major }}"
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-run:{{ .Major }}.{{ .Minor }}"
- binaries:
- ssm-session
goos: linux
dockerfile: Dockerfile.ssm-session
image_templates:
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-session:latest"
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-session:{{ .Tag }}"
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-session:{{ .Major }}"
- "docker.pkg.github.com/disneystreaming/ssm-helpers/ssm-session:{{ .Major }}.{{ .Minor }}"
nfpms:
- license: MIT
maintainer: Disney Streaming Services
description: Helper tools for AWS Systems Manager.
homepage: https://github.com/disneystreaming/ssm-helpers
suggests:
- awscli
- session-manager-plugin
formats:
- rpm
- deb
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'