-
Notifications
You must be signed in to change notification settings - Fork 112
/
.goreleaser.yml
61 lines (59 loc) · 1.49 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
before:
hooks:
- go mod tidy
- make ui/node_modules
- make ui/build
builds:
- main: ./
id: "pyrra"
binary: pyrra
# https://goreleaser.com/customization/build/#reproducible-builds
mod_timestamp: "{{ .CommitTimestamp }}"
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm64
- arm
goarm:
- 7
flags:
- -trimpath
- -v
ldflags:
# Default is `-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser`.
- -extldflags '-static' -X main.version={{.Version}} -X main.commit={{.Commit}}
archives:
# e.g. parca_0.15.0_Darwin_arm64.tar.gz, parca_0.15.0_Darwin_x86_64.tar.gz, parca_0.15.0_Linux_arm64.tar.gz, parca_0.15.0_Linux_x86_64.tar.gz
- name_template: >-
{{ .ProjectName }}_
{{- trimprefix .Version "v" }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Tag }}-{{ .ShortCommit }}"
source:
enabled: true
release:
name_template: '{{.Tag}} - {{ time "2006-01-02" }}'
prerelease: auto
footer: |
## Docker images
`docker pull ghcr.io/pyrra-dev/pyrra:{{ .Tag }}`
`podman pull ghcr.io/pyrra-dev/pyrra:{{ .Tag }}`
changelog:
sort: asc
use: github
filters:
exclude:
- "^docs:"
- "^test:"