diff --git a/.gitignore b/.gitignore index 5f1e1ff..f35178d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build/ coverage.out +dist/ diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..9b0a972 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,27 @@ +version: 2 +before: + hooks: + - go mod tidy +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin +archives: + - format: tar.gz + format_overrides: + - goos: windows + format: zip + files: + - LICENSE + - README.md + - assets/logo.png + - config.yaml +changelog: + sort: asc + filters: + exclude: + - "^docs:" + - "^test:"