From 93cd83c55c45b567ac01b0c6cd316fabec0fb26c Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Thu, 20 Mar 2025 13:23:04 -0700 Subject: [PATCH] add override for windows (#76) --- .goreleaser.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index f94d338..89ecd03 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -15,4 +15,16 @@ builds: - goos: freebsd goarch: arm64 - goos: windows - goarch: arm64 \ No newline at end of file + goarch: arm64 + +# use zip format for windows +archives: + - id: default + format: tar.gz + name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" + builds_info: + group: root + owner: root + format_overrides: + - goos: windows + format: zip \ No newline at end of file