...

Text file src/github.com/go-kivik/kivik/v4/.goreleaser.yml

Documentation: github.com/go-kivik/kivik/v4

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

View as plain text