laconicd/.goreleaser.yml
Federico Kunze Küllmer aeb7e1589e
ci: update goreleaser (#604)
* ci: update goreleaser

* bump version
2021-09-29 15:58:39 +02:00

57 lines
1.3 KiB
YAML

---
project_name: ethermint
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/ethermintd
id: "ethermintd"
binary: ethermintd
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -tags=netgo ledger
- -trimpath
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X github.com/cosmos/cosmos-sdk/version.Name=ethermint -X github.com/cosmos/cosmos-sdk/version.AppName=ethermintd -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:
- darwin
- linux
goarch:
- amd64
- arm
- arm64
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:
- LICENSE
- README.md
release:
github:
owner: tharsis
name: ethermint
name_template: "v{{.Version}}"
checksum:
name_template: SHA256SUMS-v{{.Version}}.txt
algorithm: sha256
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
changelog:
skip: true