forked from public-awesome/stargaze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
38 lines (34 loc) · 825 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
version: 2
before:
hooks:
- go mod download
builds:
- id: starsd
main: ./cmd/starsd/
binary: starsd
goos:
- linux
goarch:
- amd64
flags:
- -tags=netgo
ldflags:
- -X "github.com/cosmos/cosmos-sdk/version.Name=Stargaze"
- -X "github.com/cosmos/cosmos-sdk/version.AppName=starsd"
- -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"
checksum:
name_template: "sha256sum.txt"
algorithm: sha256
release:
draft: true
replace_existing_draft: true
name_template: "Stargaze v{{.Version}}"
mode: replace
prerelease: auto
github:
owner: public-awesome
name: stargaze
changelog:
disable: true