-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
49 lines (48 loc) · 979 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
48
49
---
builds:
-
id: my-build
main: ./main.go
binary: ./build/hcl-converter
flags:
- -trimpath
env:
- CGO_ENABLED=0
goos:
- linux
- freebsd
- darwin
goarch:
- "386"
- amd64
- arm
- arm64
- ppc64le
- s390x
archives:
-
id: my-archive
builds:
- my-build
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
replacements:
linux: Linux
darwin: Darwin
freebsd: FreeBSD
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
release:
github:
owner: haproxytech
name: hcl-converter
header: |
## Release Notes
HAProxy Data Plane API HCL Converter{{.Tag}} {{.ShortCommit}}
Build from: [email protected]:haproxytech/hcl-converter.git
Build date: {{.Date}}
draft: true
name_template: "HAProxy Data Plane API HCL Converter v{{.Version}}"