From 191e7fc03f3d48ad8eb69ed3141bce9cbee07929 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Sat, 23 May 2026 15:53:40 +0000 Subject: [PATCH] fix(ci): update kustomize image refs from ghcr.io to git.farh.net Fixes QA finding: deploy-dev and deploy-uat jobs still referenced ghcr.io in kustomize edit set image commands. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ddc3c49..e2321a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,7 +156,7 @@ jobs: - name: Update receiptwitness image tag run: | cd infra/apps/overlays/dev - kustomize edit set image ghcr.io/cartsnitch/receiptwitness:sha-${{ github.sha }} + kustomize edit set image git.farh.net/cartsnitch/receiptwitness:sha-${{ github.sha }} - name: Commit and push to infra run: | @@ -199,7 +199,7 @@ jobs: - name: Update receiptwitness image tag run: | cd infra/apps/overlays/uat - kustomize edit set image ghcr.io/cartsnitch/receiptwitness:${{ needs.build-and-push.outputs.calver_tag }} + kustomize edit set image git.farh.net/cartsnitch/receiptwitness:${{ needs.build-and-push.outputs.calver_tag }} - name: Commit and push to infra run: |