From 730a95b754800227bf7435b5823d1154849fcba3 Mon Sep 17 00:00:00 2001 From: Deep Kumar Singh Kushwah Date: Mon, 8 Jun 2026 11:58:35 +0530 Subject: [PATCH] fix(ci): align docker image name with the Helm chart repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Docker workflow published the gateway image as ghcr.io//agentcontextos-gateway, but the rag-platform Helm chart (and the Step 6.9 air-gap bundle, which derives the gateway image from the chart) reference ghcr.io//agentcontextos/rag-gateway — a different path. A `helm install` with chart defaults (and `ragctl airgap build`) would pull a repository CI never publishes to. Point docker.yml's IMAGE_NAME at agentcontextos/rag-gateway so CI publishes + cosign-signs the image the chart actually deploys. `agentcontextos-gateway` appears nowhere else in the tree; the new name matches infra/helm/rag-platform/values.yaml image.repository. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e6aeffc..2d34cc7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,7 +19,7 @@ concurrency: env: REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository_owner }}/agentcontextos-gateway + IMAGE_NAME: ${{ github.repository_owner }}/agentcontextos/rag-gateway permissions: contents: read