github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/.goreleaser.yml (about)

     1  before:
     2    hooks:
     3    - go mod tidy
     4  builds:
     5  - main: ./cmd/burrow
     6    env:
     7    - CGO_ENABLED=0
     8    ldflags:
     9    - -extldflags "-static"
    10    - -s -w
    11    - -X github.com/hyperledger/burrow/project.commit={{.Commit}}
    12    - -X github.com/hyperledger/burrow/project.date={{.Date}}
    13    goos:
    14    - darwin
    15    - linux
    16    - freebsd
    17    - windows
    18  archives:
    19  - replacements:
    20      darwin: Darwin
    21      linux: Linux
    22      windows: Windows
    23      386: i386
    24      amd64: x86_64
    25  checksum:
    26    name_template: 'checksums.txt'
    27  snapshot:
    28    name_template: "{{ .Tag }}-next"
    29  changelog:
    30    sort: asc
    31    filters:
    32      exclude:
    33      - '^docs:'
    34      - '^test:'