-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy path.goreleaser.yaml
56 lines (43 loc) · 1.22 KB
/
.goreleaser.yaml
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
version: 2
builds:
- #
id: "allora-chain"
# Path to main.go file or main package.
# Notice: when used with `gomod.proxy`, this must be a package.
main: ./cmd/allorad
# Binary name.
# Can be a path (e.g. `bin/app`) to wrap the binary in a directory.
binary: allorad
tags:
- netgo
- ledger
ldflags:
- -X github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger
- -X github.com/cosmos/cosmos-sdk/version.Name=allora
- -X github.com/cosmos/cosmos-sdk/version.AppName=allorad
- -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }}
- -X github.com/cosmos/cosmos-sdk/version.Commit={{ .FullCommit }}
# GOOS list to build for.
# For more info refer to: https://go.dev/doc/install/source#environment
goos:
- linux
- darwin
- windows
# GOARCH to build for.
# For more info refer to: https://go.dev/doc/install/source#environment
goarch:
- amd64
- arm64
archives:
- format: binary
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
checksum:
disable: false
source:
enabled: true
changelog:
use: github
release:
draft: true
prerelease: "true"
make_latest: false