github.com/MagHErmit/tendermint@v0.282.1/.goreleaser.yml (about)

     1  project_name: tendermint
     2  
     3  env:
     4    # Require use of Go modules.
     5    - GO111MODULE=on
     6  
     7  builds:
     8    - id: "Tendermint"
     9      main: ./cmd/tendermint/main.go
    10      ldflags:
    11        - -s -w -X github.com/MagHErmit/tendermint/version.TMCoreSemVer={{ .Version }}
    12      env:
    13        - CGO_ENABLED=0
    14      goos:
    15        - darwin
    16        - linux
    17        - windows
    18      goarch:
    19        - amd64
    20        - arm
    21        - arm64
    22  
    23  checksum:
    24    name_template: SHA256SUMS-{{.Version}}.txt
    25    algorithm: sha256
    26  
    27  release:
    28    prerelease: auto
    29    name_template: "{{.Version}}"
    30  
    31  archives:
    32    - files:
    33        - LICENSE
    34        - README.md
    35        - UPGRADING.md
    36        - SECURITY.md
    37        - CHANGELOG.md