github.com/mpchadwick/dbanon@v0.7.1/.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      # You may remove this if you don't use go modules.
     6      - go mod download
     7      # you may remove this if you don't need go generate
     8      - go generate ./...
     9  builds:
    10    - env:
    11        - CGO_ENABLED=0
    12      goos:
    13        - linux
    14        - darwin
    15      ignore:
    16        - goos: linux
    17          goarch: 386
    18  archives:
    19    - name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
    20      format: zip
    21  checksum:
    22    name_template: 'checksums.txt'
    23  snapshot:
    24    name_template: "{{ .Tag }}-next"
    25  changelog:
    26    filters:
    27      exclude:
    28        - '^docs:'
    29        - '^test:'