From dfcbc3fd3db3cab2da67c06af2bec62695232685 Mon Sep 17 00:00:00 2001 From: Barcode Betty Date: Sun, 7 Jun 2026 11:14:26 +0000 Subject: [PATCH] fix(ci): align deploy-dev/deploy-uat frontend bump with base image name (CAR-1318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The base frontend deployment in cartsnitch/infra uses ghcr.io/cartsnitch/app, but the deploy-dev/deploy-uat jobs targeted ghcr.io/cartsnitch/cartsnitch — a name that matches no resource, so each bump added a dead images entry and left the real 'app' entry's newTag pinned. Switch both jobs to kustomize edit set image ghcr.io/cartsnitch/app=... so the next deploy updates the active entry. The matching infra overlay cleanup drops the dead cartsnitch entry from dev/uat. Co-Authored-By: Paperclip --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f94d2fb..098af34 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -495,7 +495,7 @@ jobs: if: needs.build-and-push.result == 'success' run: | cd infra/apps/overlays/dev - kustomize edit set image ghcr.io/cartsnitch/cartsnitch=git.farh.net/cartsnitch/cartsnitch:${{ steps.frontend_tag.outputs.tag }} + kustomize edit set image ghcr.io/cartsnitch/app=git.farh.net/cartsnitch/cartsnitch:${{ steps.frontend_tag.outputs.tag }} - name: Determine image tag for receiptwitness id: receiptwitness_tag @@ -641,7 +641,7 @@ jobs: if: needs.build-and-push.result == 'success' run: | cd infra/apps/overlays/uat - kustomize edit set image ghcr.io/cartsnitch/cartsnitch=git.farh.net/cartsnitch/cartsnitch:${{ steps.frontend_tag.outputs.tag }} + kustomize edit set image ghcr.io/cartsnitch/app=git.farh.net/cartsnitch/cartsnitch:${{ steps.frontend_tag.outputs.tag }} - name: Determine image tag for receiptwitness id: receiptwitness_tag