github.com/go-kivik/kivik/v4@v4.3.2/.goreleaser.yml (about)

     1  before:
     2    hooks:
     3      - go mod download
     4  builds:
     5    - env:
     6        - CGO_ENABLED=0
     7      id: kivik
     8      goos:
     9        - linux
    10        - windows
    11        - darwin
    12      main: ./cmd/kivik
    13      binary: kivik
    14  archives:
    15    - format: tar.gz
    16      name_template: "kivik_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
    17      wrap_in_directory: true
    18  checksum:
    19    name_template: "checksums.txt"
    20  snapshot:
    21    name_template: "{{ .Tag }}-next"
    22  changelog:
    23    sort: asc
    24    filters:
    25      exclude:
    26        - "^docs:"
    27        - "^test:"
    28  release:
    29    github:
    30      owner: go-kivik
    31      name: kivik
    32    prerelease: auto