github.com/datachainlab/burrow@v0.25.0/.goreleaser.yml (about)

     1  # This is an example goreleaser.yaml file with some sane defaults.
     2  # Make sure to check the documentation at http://goreleaser.com
     3  builds:
     4  - main: ./cmd/burrow
     5    env:
     6      - CGO_ENABLED=0
     7    ldflags:
     8      - -extldflags "-static"
     9      - -s -w
    10      - -X github.com/hyperledger/burrow/project.commit={{.Commit}}
    11      - -X github.com/hyperledger/burrow/project.date={{.Date}}
    12  archive:
    13    replacements:
    14      darwin: Darwin
    15      linux: Linux
    16      windows: Windows
    17      386: i386
    18      amd64: x86_64
    19  checksum:
    20    name_template: 'checksums.txt'
    21  snapshot:
    22    name_template: "{{ .Tag }}-next"
    23  changelog:
    24    sort: asc
    25    filters:
    26      exclude:
    27        - '^docs:'
    28        - '^test:'