github.com/kjda/gocoverview@v0.0.1/.goreleaser.yaml (about)

     1  # This is an example .goreleaser.yml file with some sensible defaults.
     2  # Make sure to check the documentation at https://goreleaser.com
     3  before:
     4    hooks:
     5      # You may remove this if you don't use go modules.
     6      - go mod tidy
     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        - windows
    15        - darwin
    16      goarch:
    17        - amd64
    18        - arm64
    19  
    20  archives:
    21    - replacements:
    22        darwin: Darwin
    23        linux: Linux
    24        windows: Windows
    25        386: i386
    26        amd64: x86_64
    27  checksum:
    28    name_template: 'checksums.txt'
    29  snapshot:
    30    name_template: "{{ incpatch .Version }}-next"
    31  changelog:
    32    sort: asc
    33    filters:
    34      exclude:
    35        - '^docs:'
    36        - '^test:'