github.com/ninadingole/gotest-ls@v0.0.3/.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        - darwin
    15  archives:
    16    - replacements:
    17        darwin: Darwin
    18        linux: Linux
    19        windows: Windows
    20        386: i386
    21        amd64: x86_64
    22  checksum:
    23    name_template: 'checksums.txt'
    24  snapshot:
    25    name_template: "{{ incpatch .Version }}-next"
    26  changelog:
    27    sort: asc
    28    filters:
    29      exclude:
    30        - '^docs:'
    31        - '^test:'