github.com/rzurga/go-swagger@v0.28.1-0.20211109195225-5d1f453ffa3a/.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 vgo
     6      - go mod tidy
     7  builds:
     8  - main: ./cmd/swagger/swagger.go
     9    env:
    10    - CGO_ENABLED=0
    11    goos:
    12      - linux
    13      - darwin
    14      - windows
    15    goarch:
    16      - 386
    17      - amd64
    18      - arm
    19      - arm64
    20      - ppc64le
    21  archives:
    22  - replacements:
    23      darwin: Darwin
    24      linux: Linux
    25      windows: Windows
    26      386: i386
    27      amd64: x86_64
    28  checksum:
    29    name_template: 'checksums.txt'
    30  snapshot:
    31    name_template: "{{ .Tag }}-next"
    32  changelog:
    33    sort: asc
    34    filters:
    35      exclude:
    36      - '^docs:'
    37      - '^test:'