github.com/kristofferahl/go-centry@v1.5.0/cmd/centry/.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  before:
     4    hooks:
     5      - go mod tidy
     6      - go mod download
     7  builds:
     8    - id: centry
     9      binary: "{{ .ProjectName }}_{{ .Tag }}"
    10      goos:
    11        - darwin
    12        - linux
    13      goarch:
    14        - "386"
    15        - "amd64"
    16        - "arm64"
    17      env:
    18        - CGO_ENABLED=0
    19  archives:
    20    - id: centry
    21      builds:
    22        - centry
    23      replacements:
    24        darwin: Darwin
    25        linux: Linux
    26  checksum:
    27    name_template: "checksums.txt"
    28  snapshot:
    29    name_template: "{{ .Tag }}-next"
    30  changelog:
    31    sort: asc
    32    filters:
    33      exclude:
    34        - "^.github:"
    35        - "^docs:"
    36        - "^examples:"
    37        - "^scripts:"
    38        - "^test:"