github.com/codefresh-io/kcfi@v0.0.0-20230301195427-c1578715cc46/.goreleaser.yml (about)

     1  builds:
     2  - env:
     3      - CGO_ENABLED=0
     4    goos:
     5      - windows
     6      - linux
     7      - darwin
     8    goarch:
     9      - amd64
    10      - '386'
    11      - arm
    12      - arm64
    13    ignore:
    14      - goos: darwin
    15        goarch: '386'
    16    binary: '{{ .ProjectName }}_v{{ .Version }}'
    17  archives:
    18  - format: zip
    19    name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
    20  checksum:
    21    name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
    22    algorithm: sha256
    23  snapshot:
    24    name_template: "{{ .Tag }}-next"
    25  changelog:
    26    sort: asc
    27    filters:
    28      exclude:
    29      - '^docs:'
    30      - '^test:'