Move container image build to explicit workflow steps#9
Merged
Conversation
goreleaser's podman integration proved unreliable for pushing images. The workflow now owns the full container image lifecycle: 1. goreleaser handles binaries, archives, checksums, and Homebrew as before (dockers/docker_manifests sections removed from config) 2. A dedicated go build step cross-compiles linux/amd64 and linux/arm64 binaries with the correct ldflags version stamp 3. podman build produces per-arch images with OCI labels 4. podman push uploads each arch image to ghcr.io 5. podman manifest create/push assembles and pushes the multi-arch manifest for both :<tag> and :latest
conallob
commented
May 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dockersanddocker_manifestsfrom.goreleaser.yaml— goreleaser's podman integration was not reliably pushing imageslinux/amd64andlinux/arm64with the tag version stamped via-ldflagspodman build --platform=linux/<arch>+podman pushfor each arch, with OCI annotation labelspodman manifest create/pushfor both:<tag>and:latestgoreleaser continues to handle binaries, archives, checksums, and the Homebrew formula unchanged.
Generated by Claude Code