forked from InjectiveLabs/peggo
-
Notifications
You must be signed in to change notification settings - Fork 21
/
.goreleaser.yml
50 lines (42 loc) · 1012 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
50
---
project_name: peggo
env:
- CGO_ENABLED=1
before:
hooks:
- go mod download
builds:
- main: ./
id: "peggo"
binary: peggo
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -trimpath
ldflags:
- -s -w -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X github.com/umee-network/peggo/cmd/peggo.Version={{ .Version }} -X github.com/umee-network/peggo/cmd/peggo.Commit=$(COMMIT)={{ .Commit }}
goos:
- linux
goarch:
- amd64
archives:
- format: tar.gz
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
name_template: "{{ .Binary }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
files:
- README.md
- LICENSE
release:
github:
owner: umee-network
name: peggo
name_template: "v{{.Version}}"
checksum:
name_template: SHA256SUMS-v{{.Version}}.txt
algorithm: sha256
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
changelog:
skip: false