fix: CI appVersion mismatch + Helm OCI namespace collision#67
Merged
Conversation
1. bump-chart: push directly to main with [skip ci] instead of creating a PR. This ensures appVersion in Chart.yaml always matches the actual image SHA from the build that triggered it. Previously the bump PR merge created a new commit SHA that had no corresponding image. 2. release.yml: push Helm charts to oci://ghcr.io/<owner>/charts instead of oci://ghcr.io/<owner> to avoid namespace collision with Docker images in the same GHCR repo. Fixes #66
pahud
approved these changes
Apr 6, 2026
Reese-max
pushed a commit
to Reese-max/openab
that referenced
this pull request
Apr 12, 2026
) 1. bump-chart: push directly to main with [skip ci] instead of creating a PR. This ensures appVersion in Chart.yaml always matches the actual image SHA from the build that triggered it. Previously the bump PR merge created a new commit SHA that had no corresponding image. 2. release.yml: push Helm charts to oci://ghcr.io/<owner>/charts instead of oci://ghcr.io/<owner> to avoid namespace collision with Docker images in the same GHCR repo. Fixes openabdev#66 Co-authored-by: thepagent <thepagent@users.noreply.github.com>
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.
Problem
Two CI design flaws caused 0.3.1-beta.1 deployment to fail (see #66):
helm pushtooci://ghcr.io/thepagentcollided with Docker images atghcr.io/thepagent/agent-brokerChanges
build.yml
bump-chartnow pushes directly to main with[skip ci]instead of creating a PRrelease.yml
helm pushnow targetsoci://ghcr.io/<owner>/chartsinstead ofoci://ghcr.io/<owner>Impact
--set image.tag=override neededhelm installdefault image tag is always correctoci://ghcr.io/thepagent/charts/agent-brokerFixes #66