diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..6419ba1 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,28 @@ +before: + hooks: + - go mod tidy +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin + goarch: + - 386 + - amd64 + - arm64 + ignore: + - goos: darwin + goarch: 386 + - goos: windows + goarch: arm64 +archives: +- files: + - mqttcli_* +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' \ No newline at end of file