From 82aee0bfbf1ed81b00d718cf27f0ad2734947ea1 Mon Sep 17 00:00:00 2001 From: dierbei <1628652790@qq.com> Date: Wed, 21 Jun 2023 07:55:27 +0000 Subject: [PATCH] feat: add go releaser Fix #292 --- .gitignore | 2 ++ .goreleaser.yaml | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .goreleaser.yaml diff --git a/.gitignore b/.gitignore index dc877d69..6034e202 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,5 @@ bin **/*.csr **/server-csr.json .DS_Store + +dist/ diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 00000000..a9b49ce6 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,35 @@ +before: + hooks: + - go mod tidy +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin + goarch: + - amd64 + - arm64 + +archives: + - format: tar.gz + name_template: >- + {{ .ProjectName }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}amd64 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + format_overrides: + - goos: windows + format: zip +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:'