.goreleaser.yml 558 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. before:
  2. hooks:
  3. - go mod tidy
  4. archives:
  5. - replacements:
  6. darwin: Darwin
  7. linux: Linux
  8. windows: Windows
  9. 386: i386
  10. amd64: x86_64
  11. checksum:
  12. name_template: 'checksums.txt'
  13. snapshot:
  14. name_template: "{{ .Tag }}-next"
  15. changelog:
  16. sort: asc
  17. filters:
  18. exclude:
  19. - '^docs:'
  20. - '^test:'
  21. builds:
  22. - binary: stun-not-behavior
  23. id: stun-not-behavior
  24. goos:
  25. - darwin
  26. - windows
  27. - linux
  28. - freebsd
  29. goarch:
  30. - amd64
  31. - 386
  32. env:
  33. - CGO_ENABLED=0
  34. main: ./cmd/stun-nat-behavior