-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
169 lines (155 loc) · 5.35 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
version: 2
project_name: typhoon
env:
- GO111MODULE=on
- CGO_ENABLED=0
before:
hooks:
- go mod tidy
- go mod download
builds:
- id: accounts
binary: typhoon-accounts
main: ./cmd/accounts/main.go
goos:
- windows
- darwin
- linux
goarch:
- 386
- amd64
- arm
- arm64
ldflags:
- -s -w
- id: web
binary: typhoon-web
main: ./cmd/web/main.go
goos:
- windows
- darwin
- linux
goarch:
- 386
- amd64
- arm
- arm64
ldflags:
- -s -w
archives:
- id: accounts
builds:
- accounts
name_template: "accounts_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
- id: web
builds:
- web
name_template: "web_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
dockers:
- image_templates: [
"ghcr.io/zeiss/{{ .ProjectName }}/accounts:{{ .Version }}-amd64"
]
dockerfile: Dockerfile.accounts
use: buildx
goos: linux
goarch: amd64
build_flag_templates:
- --platform=linux/amd64
- --BINARY=accounts-linux-amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}-accounts
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/zeiss/{{ .ProjectName }}/typhoon/accounts
- --label=org.opencontainers.image.source=https://github.com/zeiss/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=Apache-2.0
- image_templates: [
"ghcr.io/zeiss/{{ .ProjectName }}/accounts:{{ .Version }}-arm64"
]
dockerfile: Dockerfile.accounts
use: buildx
goos: linux
goarch: arm64
build_flag_templates:
- --platform=linux/arm64
- --BINARY=accounts-linux-arm64
- --label=org.opencontainers.image.title={{ .ProjectName }}-accounts
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/zeiss/{{ .ProjectName }}/typhoon/accounts
- --label=org.opencontainers.image.source=https://github.com/zeiss/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=Apache-2.0
- image_templates: [
"ghcr.io/zeiss/{{ .ProjectName }}/web:{{ .Version }}-amd64"
]
dockerfile: Dockerfile.web
use: buildx
goos: linux
goarch: amd64
build_flag_templates:
- --platform=linux/amd64
- --BINARY=web-linux-amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}-web
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/zeiss/{{ .ProjectName }}/typhoon/web
- --label=org.opencontainers.image.source=https://github.com/zeiss/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=Apache-2.0
- image_templates: [
"ghcr.io/zeiss/{{ .ProjectName }}/web:{{ .Version }}-arm64"
]
dockerfile: Dockerfile.web
use: buildx
goos: linux
goarch: arm64
build_flag_templates:
- --platform=linux/arm64
- --BINARY=web-linux-arm64
- --label=org.opencontainers.image.title={{ .ProjectName }}-web
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/zeiss/{{ .ProjectName }}/typhoon/web
- --label=org.opencontainers.image.source=https://github.com/zeiss/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=Apache-2.0
docker_manifests:
- name_template: "ghcr.io/zeiss/{{ .ProjectName }}/web:{{ .Version }}"
image_templates:
- 'ghcr.io/zeiss/{{ .ProjectName }}/web:{{ .Version }}-amd64'
- 'ghcr.io/zeiss/{{ .ProjectName }}/web:{{ .Version }}-arm64'
- name_template: "ghcr.io/zeiss/{{ .ProjectName }}/accounts:{{ .Version }}"
image_templates:
- 'ghcr.io/zeiss/{{ .ProjectName }}/accounts:{{ .Version }}-amd64'
- 'ghcr.io/zeiss/{{ .ProjectName }}/accounts:{{ .Version }}-arm64'
gomod:
proxy: true
release:
header: |
## Changelog ({{ .Date }})
Welcome to this new release! We hope you enjoy the changes we've made.
changelog:
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "Bug fixes"
regexp: '^.*?bug(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Others
order: 999
sort: asc
filters:
exclude:
- "^docs:"
- typo
- (?i)foo
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
snapshot:
version_template: SNAPSHOT-{{.ShortCommit}}