From 1099037db14c4687784cc4f125672ac0654128e5 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Tue, 2 Jun 2026 10:07:31 +0000 Subject: [PATCH] fix(ci): use REGISTRY_TOKEN for cross-repo infra checkout Replaces CI_GITEA_TOKEN (which lacks cross-repo access) with REGISTRY_TOKEN for checkout of cartsnitch/infra in deploy-uat/deploy-dev jobs. Fixes CAR-1147 --- .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 cd3dde0..05607b3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: - uses: actions/checkout@v4 with: repository: cartsnitch/infra - token: ${{ secrets.CI_GITEA_TOKEN }} + token: ${{ secrets.REGISTRY_TOKEN }} ref: main path: infra @@ -123,7 +123,7 @@ jobs: - uses: actions/checkout@v4 with: repository: cartsnitch/infra - token: ${{ secrets.CI_GITEA_TOKEN }} + token: ${{ secrets.REGISTRY_TOKEN }} ref: main path: infra