.goreleaser.yml 502 B

123456789101112131415161718192021222324252627282930313233
  1. build:
  2. main: cmd/swag/main.go
  3. goos:
  4. - linux
  5. - darwin
  6. goarch:
  7. - amd64
  8. - arm64
  9. - 386
  10. ignore:
  11. - goos: darwin
  12. goarch: arm64
  13. env:
  14. - CGO_ENABLED=0
  15. archives:
  16. -
  17. replacements:
  18. darwin: Darwin
  19. linux: Linux
  20. windows: Windows
  21. 386: i386
  22. amd64: x86_64
  23. arm64: aarch64
  24. checksum:
  25. name_template: 'checksums.txt'
  26. snapshot:
  27. name_template: "{{ .Tag }}-next"
  28. changelog:
  29. sort: asc
  30. filters:
  31. exclude:
  32. - '^docs:'
  33. - '^test:'