-
Notifications
You must be signed in to change notification settings - Fork 22
/
.goreleaser.yml
55 lines (46 loc) · 1.1 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
---
project_name: price-feeder
env:
- CGO_ENABLED=1
before:
hooks:
- go mod download
builds:
- main: ./
id: "price-feeder"
binary: price-feeder
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -tags=badgerdb ledger netgo
- -trimpath
ldflags:
- -s -w
- -X main.commit={{.Commit}}
- -X main.date={{ .CommitDate }}
- -X github.com/ojo-network/price-feeder/cmd.Version={{ .Version }}
- -X github.com/ojo-network/price-feeder/cmd.Commit={{ .Commit }}
goos:
- linux
goarch:
- amd64
archives:
- id: bins
format: binary
name_template: "{{ .Binary }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
- id: tarball
format: tar.gz
name_template: "{{ .Binary }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
files:
- LICENSE
- README.md
release:
github:
owner: ojo-network
name: price-feeder
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
checksum:
name_template: SHA256SUMS-v{{.Version}}.txt
algorithm: sha256
changelog:
skip: false