forked from kubernetes-sigs/aws-iam-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
62 lines (57 loc) · 1.47 KB
/
.goreleaser.yaml
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
# Configuration for https://goreleaser.com/
project_name: authenticator
builds:
- binary: heptio-authenticator-aws
main: ./cmd/heptio-authenticator-aws/root.go
goos:
- darwin
- linux
goarch:
- amd64
env:
- CGO_ENABLED=0
dockers:
- image: gcr.io/heptio-images/authenticator
binary: heptio-authenticator-aws
dockerfile: Dockerfile.scratch
tag_templates:
- "{{ .Tag }}-scratch"
- "{{ .Tag }}"
latest: false
- image: gcr.io/heptio-images/authenticator
binary: heptio-authenticator-aws
dockerfile: Dockerfile.alpine-3.6
tag_templates:
- "{{ .Tag }}-alpine-3.6"
latest: false
- image: gcr.io/heptio-images/authenticator
binary: heptio-authenticator-aws
dockerfile: Dockerfile.alpine-3.7
tag_templates:
- "{{ .Tag }}-alpine-3.7"
- "{{ .Tag }}-alpine"
latest: false
- image: gcr.io/heptio-images/authenticator
binary: heptio-authenticator-aws
dockerfile: Dockerfile.debian-jessie
tag_templates:
- "{{ .Tag }}-debian-jessie"
latest: false
- image: gcr.io/heptio-images/authenticator
binary: heptio-authenticator-aws
dockerfile: Dockerfile.debian-stretch
tag_templates:
- "{{ .Tag }}-debian-stretch"
- "{{ .Tag }}-debian"
latest: false
snapshot:
name_template: "git-{{.Commit}}"
archive:
format: binary
release:
github:
owner: heptio
name: authenticator
draft: true
prerelease: true
name_template: "v{{.Version}}"