From 34ff0a120006688ab1c3d0e05ffcdf538246d85f Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Wed, 5 Nov 2025 20:25:00 -0800 Subject: [PATCH] fix: Disable ARM64 builds for Linux/Windows (CGO cross-compile issues) --- .goreleaser.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 8cfe2eba..5b9f9e27 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -21,6 +21,11 @@ builds: goarch: - amd64 - arm64 + ignore: + - goos: linux + goarch: arm64 + - goos: windows + goarch: arm64 ldflags: - -s -w - -X main.Version={{.Version}}