github.com/chyroc/anb@v0.3.0/.goreleaser.yml (about)

     1  # docs: http://goreleaser.com
     2  before:
     3    hooks:
     4      - go mod download
     5  builds:
     6    - env:
     7        - CGO_ENABLED=0
     8      goos:
     9        - linux
    10        - windows
    11        - darwin
    12  archives:
    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:'
    29  source:
    30    enabled: true
    31    name_template: "{{.ProjectName}}-{{.Version}}"