forked from prometheus-community/PushProx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
47 lines (43 loc) · 895 Bytes
/
.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
version: 2
before:
hooks:
- go mod tidy
builds:
- id: pushprox-proxy
main: ./cmd/proxy
goos:
- windows
- linux
goarch:
- amd64
binary: pushprox-proxy
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
ldflags:
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}'
- id: pushprox-client
main: ./cmd/client
goos:
- windows
- linux
goarch:
- amd64
binary: pushprox-client
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
ldflags:
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}'
archives:
- format: binary
builds:
- pushprox-client
- pushprox-proxy
name_template: "{{ .Binary }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"