From cbf9a571354a8ea6234547b96763a47a55999db2 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Fri, 21 Nov 2025 23:59:02 +0800 Subject: [PATCH] **build(goreleaser): set CGO_ENABLED=0 for cli-proxy-api binaries** - Disabled CGO to produce statically linked binaries. - Minor formatting adjustment for newline at EOF. --- .goreleaser.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 08d40552..31d05e6d 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,5 +1,7 @@ builds: - id: "cli-proxy-api" + env: + - CGO_ENABLED=0 goos: - linux - windows @@ -34,4 +36,4 @@ changelog: filters: exclude: - '^docs:' - - '^test:' \ No newline at end of file + - '^test:'