-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoreleaser.yaml
More file actions
34 lines (28 loc) · 717 Bytes
/
goreleaser.yaml
File metadata and controls
34 lines (28 loc) · 717 Bytes
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
version: 2
project_name: ackchyually
before:
hooks:
- go mod tidy
builds:
- id: ackchyually
main: ./cmd/ackchyually
binary: ackchyually
env:
- CGO_ENABLED=0
ldflags:
- -s -w
- -X github.com/joelklabo/ackchyually/internal/app.buildVersion={{.Version}}
- -X github.com/joelklabo/ackchyually/internal/app.buildCommit={{.Commit}}
- -X github.com/joelklabo/ackchyually/internal/app.buildDate={{.Date}}
goos: [darwin, linux]
goarch: [amd64, arm64]
archives:
- formats: [tar.gz]
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
files:
- LICENSE
- README.md
checksum:
name_template: "checksums.txt"
changelog:
use: github