From f01d12204359eb58c558c402005f79f661b22b82 Mon Sep 17 00:00:00 2001 From: christophe-duc Date: Wed, 7 Jan 2026 15:40:44 -0400 Subject: [PATCH] Fix GoReleaser build: add containers_image_openpgp tag and reduce platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add containers_image_openpgp build tag to use pure Go PGP instead of gpgme - Remove Windows builds (Podman dependencies don't cross-compile well) - Remove 32-bit and ARM v6/v7 builds for simplicity - Keep darwin/linux on amd64/arm64 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .goreleaser.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 23a8896d..77b55923 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -7,29 +7,24 @@ env: builds: - id: binary + tags: + - containers_image_openpgp goos: - # - freebsd - - windows - darwin - linux goarch: - amd64 - - arm - arm64 - - 386 - goarm: - - 6 - - 7 ldflags: - -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.buildSource=binaryRelease - id: snap + tags: + - containers_image_openpgp goos: - linux goarch: - amd64 - - arm - arm64 - - 386 ldflags: - -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.buildSource=snap