From a58643a712e712315fe82bf8a770e38ec7fd680b Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Sat, 23 May 2026 15:54:42 +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 --- .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 57e5255..758f968 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -225,7 +225,7 @@ jobs: if: needs.build-and-push.result == 'success' run: | cd infra/apps/overlays/dev - kustomize edit set image ghcr.io/cartsnitch/api:${{ steps.api_tag.outputs.tag }} + kustomize edit set image git.farh.net/cartsnitch/api:${{ steps.api_tag.outputs.tag }} - name: Commit and push to infra run: | @@ -269,7 +269,7 @@ jobs: if: needs.build-and-push.result == 'success' run: | cd infra/apps/overlays/uat - kustomize edit set image ghcr.io/cartsnitch/api:${{ steps.api_tag.outputs.tag }} + kustomize edit set image git.farh.net/cartsnitch/api:${{ steps.api_tag.outputs.tag }} - name: Commit and push to infra run: |