From 725c21e5d79dfe5345c6edbae5dea06f498a01fb Mon Sep 17 00:00:00 2001 From: TimHoogervorst Date: Sun, 10 May 2026 15:07:32 +0200 Subject: [PATCH] Update checkout step in deployment workflow to use git clone instead of actions/checkout --- .gitea/workflows/deploy-agent.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-agent.yaml b/.gitea/workflows/deploy-agent.yaml index 1387d28..a2de74b 100644 --- a/.gitea/workflows/deploy-agent.yaml +++ b/.gitea/workflows/deploy-agent.yaml @@ -11,7 +11,8 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v4 + run: | + git clone http://gitea:3000/YOUR_USER/Agents.git . - name: Build Docker image run: |