From d2394b0be9423b4ceec4d0472a09a59b9c88ae0b Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Fri, 8 Aug 2025 14:28:02 +0800 Subject: [PATCH] Update `.goreleaser.yml` to specify archive formats for different OS targets - Added `tar.gz` as the default archive format. - Introduced `zip` format override for Windows builds. --- .goreleaser.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 95887a74..4f79944f 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -11,6 +11,10 @@ builds: binary: cli-proxy-api archives: - id: "cli-proxy-api" + format: tar.gz + format_overrides: + - goos: windows + format: zip files: - LICENSE - README.md