.goreleaser.yml 404 B

1234567891011121314151617181920212223242526
  1. env:
  2. - GO111MODULE=on
  3. - GOPROXY=https://gocenter.io
  4. before:
  5. hooks:
  6. - go mod tidy
  7. builds:
  8. - env:
  9. - CGO_ENABLED=0
  10. archives:
  11. - replacements:
  12. darwin: Darwin
  13. linux: Linux
  14. windows: Windows
  15. 386: i386
  16. amd64: x86_64
  17. checksum:
  18. name_template: 'checksums.txt'
  19. snapshot:
  20. name_template: "{{ .Tag }}-next"
  21. changelog:
  22. sort: asc
  23. filters:
  24. exclude:
  25. - '^docs:'
  26. - '^test:'