From 14ae521e4e1a1feaeba383614f19c199cf06b20c Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Sat, 8 Oct 2022 13:29:08 -0500 Subject: [PATCH] build: add goreleaser configuration (#10) --- .goreleaser.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .goreleaser.yaml diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..da38511 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,20 @@ +before: + hooks: + - go mod tidy +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - darwin + - windows +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:'