-
Notifications
You must be signed in to change notification settings - Fork 32
/
.goreleaser.yml
89 lines (85 loc) · 2.03 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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.version={{ .Version }}
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: windows
goarch: arm
goarm: 7
- goos: windows
goarch: arm
goarm: 6
- goos: windows
goarch: arm64
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: mikekonan
name: exchange-proxy
draft: true
name_template: "{{.ProjectName}}-v{{.Version}}"
dockers:
- image_templates:
- mikekonan/exchange-proxy:latest-amd64
- mikekonan/exchange-proxy:{{ .Version }}-amd64
dockerfile: docker/ci.Dockerfile
use: buildx
goos: linux
goarch: amd64
build_flag_templates:
- "--build-arg=VERSION={{ .Version }}"
- "--platform=linux/amd64"
- image_templates:
- mikekonan/exchange-proxy:latest-arm64
- mikekonan/exchange-proxy:{{ .Version }}-arm64
dockerfile: docker/ci.Dockerfile
use: buildx
goos: linux
goarch: arm64
build_flag_templates:
- "--build-arg=VERSION={{ .Version }}"
- "--platform=linux/arm64"
- image_templates:
- mikekonan/exchange-proxy:latest-arm-v7
- mikekonan/exchange-proxy:{{ .Version }}-arm-v7
dockerfile: docker/ci.Dockerfile
use: buildx
goos: linux
goarch: arm
goarm: 7
build_flag_templates:
- "--build-arg=VERSION={{ .Version }}"
- "--platform=linux/arm/v7"
- image_templates:
- mikekonan/exchange-proxy:latest-arm-v6
- mikekonan/exchange-proxy:{{ .Version }}-arm-v6
dockerfile: docker/ci.Dockerfile
use: buildx
goos: linux
goarch: arm
goarm: 6
build_flag_templates:
- "--build-arg=VERSION={{ .Version }}"
- "--platform=linux/arm/v6"