-
Notifications
You must be signed in to change notification settings - Fork 33
/
.goreleaser.yml
89 lines (87 loc) · 3.29 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
project_name: Asterisk ARI Proxy
builds:
- binary: ari-proxy
env:
- CGO_ENABLED=0
goos:
- windows
- darwin
- linux
goarch:
- amd64
- arm64
archives:
- id: ari-proxy
format: binary
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
dockers:
- image_templates:
- 'cycoresystems/ari-proxy:{{ .Tag }}-amd64'
- 'cycoresystems/ari-proxy:v{{ .Major }}-amd64'
- 'cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-amd64'
- 'cycoresystems/ari-proxy:latest-amd64'
- 'ghcr.io/cycoresystems/ari-proxy:{{ .Tag }}-amd64'
- 'ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}-amd64'
- 'ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-amd64'
- 'ghcr.io/cycoresystems/ari-proxy:latest-amd64'
use: buildx
goarch: amd64
dockerfile: Dockerfile.goreleaser
build_flag_templates:
- "--platform=linux/amd64"
- image_templates:
- 'cycoresystems/ari-proxy:{{ .Tag }}-arm64v8'
- 'cycoresystems/ari-proxy:v{{ .Major }}-arm64v8'
- 'cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-arm64v8'
- 'cycoresystems/ari-proxy:latest-arm64v8'
- 'ghcr.io/cycoresystems/ari-proxy:{{ .Tag }}-arm64v8'
- 'ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}-arm64v8'
- 'ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-arm64v8'
- 'ghcr.io/cycoresystems/ari-proxy:latest-arm64v8'
use: buildx
goarch: arm64
dockerfile: Dockerfile.goreleaser
build_flag_templates:
- "--platform=linux/arm64/v8"
docker_manifests:
- name_template: 'cycoresystems/ari-proxy:{{ .Tag }}'
image_templates:
- cycoresystems/ari-proxy:{{ .Tag }}-amd64
- cycoresystems/ari-proxy:{{ .Tag }}-arm64v8
- name_template: 'ghcr.io/cycoresystems/ari-proxy:{{ .Tag }}'
image_templates:
- ghcr.io/cycoresystems/ari-proxy:{{ .Tag }}-amd64
- ghcr.io/cycoresystems/ari-proxy:{{ .Tag }}-arm64v8
- name_template: 'cycoresystems/ari-proxy:v{{ .Major }}'
image_templates:
- cycoresystems/ari-proxy:v{{ .Major }}-amd64
- cycoresystems/ari-proxy:v{{ .Major }}-arm64v8
- name_template: 'ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}'
image_templates:
- ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}-amd64
- ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}-arm64v8
- name_template: 'cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}'
image_templates:
- cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-amd64
- cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-arm64v8
- name_template: 'ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}'
image_templates:
- ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-amd64
- ghcr.io/cycoresystems/ari-proxy:v{{ .Major }}.{{ .Minor }}-arm64v8
- name_template: 'cycoresystems/ari-proxy:latest'
image_templates:
- cycoresystems/ari-proxy:latest-amd64
- cycoresystems/ari-proxy:latest-arm64v8
- name_template: 'ghcr.io/cycoresystems/ari-proxy:latest'
image_templates:
- ghcr.io/cycoresystems/ari-proxy:latest-amd64
- ghcr.io/cycoresystems/ari-proxy:latest-arm64v8