From 008ee3fd0e75111db3502e7a6597f577dc21e5c1 Mon Sep 17 00:00:00 2001 From: Kabir Goel Date: Sun, 24 Jul 2022 00:29:13 -0700 Subject: [PATCH] build: add .goreleaser.yaml --- .goreleaser.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .goreleaser.yaml diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..01f0416 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,22 @@ +# Make sure to check the documentation at https://goreleaser.com +before: + hooks: + - go mod tidy +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin +archives: +checksum: + name_template: "checksums.txt" +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - "^docs:" + - "^test:"