-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
69 lines (59 loc) · 1.44 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
63
64
65
66
67
68
69
version: 2
project_name: zero
builds:
- env:
- CGO_ENABLED=0
binary: zero
main: ./cmd/zero
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
flags:
- -trimpath
ldflags:
- -s -w -X main.version={{.Version}}
archives:
- id: release_archive
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
files:
- LICENSE
- README.md
dockers:
- image_templates:
- "yarlson/zero:{{ .Version }}-amd64"
- "yarlson/zero:1-amd64"
- "yarlson/zero:latest-amd64"
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/amd64"
- image_templates:
- "yarlson/zero:{{ .Version }}-arm64"
- "yarlson/zero:1-arm64"
- "yarlson/zero:latest-arm64"
goarch: arm64
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/arm64"
docker_manifests:
- name_template: "yarlson/zero:{{ .Version }}"
image_templates:
- "yarlson/zero:{{ .Version }}-amd64"
- "yarlson/zero:{{ .Version }}-arm64"
- name_template: "yarlson/zero:latest"
image_templates:
- "yarlson/zero:latest-amd64"
- "yarlson/zero:latest-arm64"
- name_template: "yarlson/zero:1"
image_templates:
- "yarlson/zero:1-amd64"
- "yarlson/zero:1-arm64"
release:
github:
owner: yarlson
name: zero
checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"