From 017eb4278b56f9249578bd27af5064aec0f48c6f Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 22 Mar 2026 20:23:01 -0700 Subject: [PATCH] fix(ci): use local paths for host-mode Gitea runner - Replace actions/checkout with git pull + local working-directory - Fixes corp proxy blocking GitHub action downloads --- .gitea/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 19f2cb10..55fcfe52 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,8 +13,12 @@ jobs: name: Build, Test & Typecheck runs-on: ubuntu-latest timeout-minutes: 15 + defaults: + run: + working-directory: /Users/sd9235/code/mygh/learning_ai_common_plat steps: - - uses: actions/checkout@v4 + - name: Pull latest + run: git pull --ff-only origin main || true - name: Install dependencies run: pnpm install --frozen-lockfile