https://github.com/tendermint/tendermint
Raw File
Tip revision: b06e1cea5495dc4557d805dcc433a0f771c0fc1c authored by Sergio Mena on 17 October 2022, 20:08:51 UTC
QA Process report for v0.37.x (and baseline for v0.34.x) (#9499)
Tip revision: b06e1ce
.goreleaser.yml
project_name: tendermint

env:
  # Require use of Go modules.
  - GO111MODULE=on

builds:
  - id: "Tendermint"
    main: ./cmd/tendermint/main.go
    ldflags:
      - -s -w -X github.com/tendermint/tendermint/version.TMCoreSemVer={{ .Version }}
    env:
      - CGO_ENABLED=0
    goos:
      - darwin
      - linux
      - windows
    goarch:
      - amd64
      - arm
      - arm64

checksum:
  name_template: SHA256SUMS-{{.Version}}.txt
  algorithm: sha256

release:
  prerelease: auto
  name_template: "{{.Version}}"

archives:
  - files:
      - LICENSE
      - README.md
      - UPGRADING.md
      - SECURITY.md
      - CHANGELOG.md
back to top