https://github.com/tendermint/tendermint
Raw File
Tip revision: a6dd0d270abc3c01f223eedee44d8b285ae273f6 authored by Thane Thomson on 18 October 2022, 17:04:13 UTC
Release v0.34.22 (#9583)
Tip revision: a6dd0d2
.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