From 93716afd1a80df2101a412bcd42aa5751d485754 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 10:56:40 +0000 Subject: [PATCH] fix(ci): use REGISTRY_TOKEN + E2E DinD networking on main - Change Docker login password from gitea.token to secrets.REGISTRY_TOKEN - Add PLAYWRIGHT_BASE_URL env var for E2E DinD networking - GRO-1345 Co-Authored-By: Paperclip --- .gitea/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b41e002..b263a1b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -86,6 +86,8 @@ jobs: - name: Run E2E tests run: pnpm --filter @groombook/e2e test + env: + PLAYWRIGHT_BASE_URL: http://host.docker.internal:8080 - name: Upload Playwright report if: failure() @@ -149,7 +151,7 @@ jobs: with: registry: git.farh.net username: ${{ gitea.actor }} - password: ${{ gitea.token }} + password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and push API image uses: docker/build-push-action@v6 -- 2.52.0