forked from FairwindsOps/saffire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
58 lines (58 loc) · 1.86 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
builds:
- ldflags:
- -X main.version={{.Version}} -X main.commit={{.Commit}} -s -w
goarch:
- amd64
- arm
- arm64
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarm:
- 6
- 7
dockers:
- image_templates:
- "quay.io/fairwinds/saffire:{{ .Tag }}-amd64"
- "quay.io/fairwinds/saffire:v{{ .Major }}-amd64"
- "quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}-amd64"
use_buildx: true
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/amd64"
- image_templates:
- "quay.io/fairwinds/saffire:{{ .Tag }}-arm64v8"
- "quay.io/fairwinds/saffire:v{{ .Major }}-arm64v8"
- "quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}-arm64v8"
use_buildx: true
goarch: arm64
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/arm64/v8"
- image_templates:
- "quay.io/fairwinds/saffire:{{ .Tag }}-armv7"
- "quay.io/fairwinds/saffire:v{{ .Major }}-armv7"
- "quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}-armv7"
use_buildx: true
goarch: arm64
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/arm/v7"
docker_manifests:
- name_template: quay.io/fairwinds/saffire:{{ .Tag }}
image_templates:
- "quay.io/fairwinds/saffire:{{ .Tag }}-amd64"
- "quay.io/fairwinds/saffire:{{ .Tag }}-arm64v8"
- "quay.io/fairwinds/saffire:{{ .Tag }}-armv7"
- name_template: quay.io/fairwinds/saffire:v{{ .Major }}
image_templates:
- "quay.io/fairwinds/saffire:v{{ .Major }}-amd64"
- "quay.io/fairwinds/saffire:v{{ .Major }}-arm64v8"
- "quay.io/fairwinds/saffire:v{{ .Major }}-armv7"
- name_template: quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}
image_templates:
- "quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}-amd64"
- "quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}-arm64v8"
- "quay.io/fairwinds/saffire:v{{ .Major }}.{{ .Minor }}-armv7"