From d1275447a9cc65735b404118178685ebc474788d Mon Sep 17 00:00:00 2001 From: Tomas Mihalicka Date: Thu, 8 Jan 2026 00:28:09 +0100 Subject: [PATCH] fix(ci): use Amsterdam registry and hardcode namespace - Change registry to rg.nl-ams.scw.cloud (Amsterdam) - Hardcode namespace to 'ash-backend' (no secret needed) - Image path: rg.nl-ams.scw.cloud/ash-backend/ash-backend: Only SCW_SECRET_KEY secret is required in prod environment. --- .github/workflows/ci-backend.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index d6698e5..1252551 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -158,7 +158,10 @@ jobs: environment: prod env: - REGISTRY: rg.fr-par.scw.cloud + # Scaleway Amsterdam region registry + REGISTRY: rg.nl-ams.scw.cloud + # Registry namespace (created in Scaleway console) + NAMESPACE: ash-backend IMAGE_NAME: ash-backend steps: @@ -178,9 +181,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - # SCW_REGISTRY_NAMESPACE should be set to your Scaleway registry namespace - # e.g., "ash-registry" or "monadial/ash" - images: ${{ env.REGISTRY }}/${{ secrets.SCW_REGISTRY_NAMESPACE }}/${{ env.IMAGE_NAME }} + images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/${{ env.IMAGE_NAME }} tags: | type=sha,format=short type=sha,format=long