-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
62 lines (54 loc) · 1.39 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
version: 2
project_name: prometheus-fake-remote-read
release:
name_template: "{{ .ProjectName }}-v{{ .Version }}"
prerelease: auto
builds:
- main: ./cmd/prometheus-fake-remote-read
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
archives:
- format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
files:
- README.md
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksums.txt"
dockers:
- image_templates:
- "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}-amd64"
goarch: amd64
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- --platform=linux/amd64
extra_files:
- configs/example.config.json
- image_templates:
- "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}-arm64"
goarch: arm64
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- --platform=linux/arm64/v8
extra_files:
- configs/example.config.json
docker_manifests:
- name_template: "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}"
image_templates:
- "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}-amd64"
- "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}-arm64"
- name_template: "ghcr.io/vitalyu/{{ .ProjectName }}:latest"
image_templates:
- "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}-amd64"
- "ghcr.io/vitalyu/{{ .ProjectName }}:{{ .Version }}-arm64"