github.com/consideritdone/landslidecore@v0.0.0-20230718131026-a8b21c5cf8a7/.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/tendermint/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    name_template: "{{.Version}} (WARNING: BETA SOFTWARE)"