forked from megaease/easeprobe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
95 lines (85 loc) · 2.31 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
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
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
snapshot:
name_template: '{{ .Tag }}'
checksum:
name_template: 'checksums.txt'
changelog:
skip: true
builds:
- id: build
main: ./cmd/easeprobe/
binary: bin/easeprobe
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
- openbsd
goarch:
- amd64
- arm64
ldflags:
- -s -w
- -X github.com/megaease/easeprobe/global.Ver={{ .Tag }}
- -X github.com/megaease/easeprobe/pkg/version.RELEASE={{ .Tag }}
- -X github.com/megaease/easeprobe/pkg/version.COMMIT={{.Commit}}
- -X github.com/megaease/easeprobe/pkg/version.REPO=megaease/easeprobe
archives:
- id: easeprobe
format: tar.gz
name_template: "{{ .ProjectName }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}"
files:
- none*
release:
github:
owner: megaease
name: easeprobe
name_template: "{{ .ProjectName }}-v{{ .Version }}"
dockers:
- image_templates:
- megaease/easeprobe:{{ .Tag }}-amd64
goos: linux
goarch: amd64
ids:
- build
dockerfile: resources/Dockerfile.goreleaser
extra_files:
- resources/scripts/entrypoint.sh
use: buildx
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=BUILD_DATE={{.Date}}"
- "--build-arg=BUILD_VERSION={{.Version}}"
- "--build-arg=VCS_REF={{.FullCommit}}"
- "--build-arg=VCS_URL={{.GitURL}}"
- image_templates:
- megaease/easeprobe:{{ .Tag }}-arm64v8
goos: linux
goarch: arm64
ids:
- build
dockerfile: resources/Dockerfile.goreleaser
extra_files:
- resources/scripts/entrypoint.sh
use: buildx
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--build-arg=BUILD_DATE={{.Date}}"
- "--build-arg=BUILD_VERSION={{.Version}}"
- "--build-arg=VCS_REF={{.FullCommit}}"
- "--build-arg=VCS_URL={{.GitURL}}"
docker_manifests:
- name_template: megaease/easeprobe:{{ .Tag }}
image_templates:
- megaease/easeprobe:{{ .Tag }}-amd64
- megaease/easeprobe:{{ .Tag }}-arm64v8
- name_template: megaease/easeprobe:latest
image_templates:
- megaease/easeprobe:{{ .Tag }}-amd64
- megaease/easeprobe:{{ .Tag }}-arm64v8