refactor(ci): migrate to goreleaser dockers_v2 - #243
Merged
Merged
Conversation
inference-gateway-maintainer
Bot
requested a review
from a team
as a code owner
September 25, 2026 00:39
6 tasks
inference-gateway-releaser Bot
added a commit
that referenced
this pull request
Sep 25, 2026
## [0.26.0](v0.25.1...v0.26.0) (2026-09-25) ### ✨ Features * **gateway:** route RFC 9728 metadata and expose MCP_RESOURCE_URL ([#247](#247)) ([b439391](b439391)) * **release:** pin operator image in tagged manifests ([#248](#248)) ([5d15513](5d15513)) ### ♻️ Improvements * **ci:** migrate to goreleaser dockers_v2 ([#243](#243)) ([7c8ff61](7c8ff61)) ### 🐛 Bug Fixes * **controller:** reconcile resources when namespace starts matching ([#237](#237)) ([93292f9](93292f9)) * **gateway:** map guardrails failMode to closed/open ([#244](#244)) ([e71728e](e71728e)) * **release:** pin operator image in install.yaml asset ([#242](#242)) ([432c9bd](432c9bd)) ### 📚 Documentation * **gateway:** document POST /mcp gating under MCP_EXPOSE ([#246](#246)) ([270874a](270874a))
Contributor
|
🎉 This PR is included in version 0.26.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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
Replaces the deprecated
dockers+docker_manifestssections with a singledockers_v2entry that builds and pushes the multi-arch index (linux/amd64, linux/arm64) in one buildx step..goreleaser.yaml: onedockers_v2entry; dropped the no-opgoarm: "7"frombuilds.Dockerfile.goreleaser: copies the binary via$TARGETPLATFORM/operator, matching the per-platform build contextdockers_v2lays out.goreleaser check(v2.16.0) passes with no deprecation warning.Behavior changes
:<version>-amd64/:<version>-arm64are no longer published. Only:<version>and:latest(non-rc) remain. A search found the per-arch tags only in.goreleaser.yaml;.releaserc.yaml,Taskfile.yaml, the e2e suite, andscan_containers/sign_containersall use:<version>or:latest.--skip=publish/--skip=dockerskips the image build.Not done
:<version>manifest.task release-dry-runwas not executed here (no docker daemon in this runner).no docs ticket: internal-only refactor
Closes #238