-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
53 lines (44 loc) · 1.43 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
---
project_name: nebula
env:
- CGO_ENABLED=1
before:
hooks:
- go mod download
builds:
- main: ./cmd/nebud
id: "nebud"
binary: nebud
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -tags=badgerdb ledger netgo
- -trimpath
ldflags:
- -s -w -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X github.com/cosmos/cosmos-sdk/version.Name=nebula -X github.com/cosmos/cosmos-sdk/version.AppName=nebud -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger -X github.com/tendermint/tendermint/version.TMCoreSemVer={{ .Env.TM_VERSION }}
goos:
- linux
goarch:
- amd64
# - arm64 # github only supports linux @ amd64
archives:
- id: bins
format: binary
name_template: "{{ .Binary }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
# - id: tarball
# format: tar.gz
# wrap_in_directory: false # must not wrap into directory to support cosmwasm
# name_template: "{{ .Binary }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
# files:
# - LICENSE
# - README.md
release:
github:
owner: umee-network
name: nebula
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
checksum:
name_template: SHA256SUMS-v{{.Version}}.txt
algorithm: sha256
changelog:
skip: false