From 7705d98cbd60477f61558b4493856c81047567b2 Mon Sep 17 00:00:00 2001 From: KIVOX-dev <07kaviarasan@gmail.com> Date: Thu, 6 Aug 2026 01:22:34 +0530 Subject: [PATCH] fix: correct Cloud Build Artifact Registry region and repo name _REGION was asia-south1 (a placeholder) but the project's Artifact Registry repo is in europe-west1, and the only existing Docker repo there is the Cloud Run-managed cloud-run-source-deploy, not upscaler-images. Confirmed against the actual Artifact Registry console listing. --- cloudbuild.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudbuild.yaml b/cloudbuild.yaml index d1f265c..aa60a4f 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -24,8 +24,8 @@ # roles/logging.logWriter - already granted by default substitutions: - _REGION: asia-south1 - _AR_REPO: upscaler-images + _REGION: europe-west1 + _AR_REPO: cloud-run-source-deploy options: logging: CLOUD_LOGGING_ONLY