From 4796a08acc880888a63e2163dd3f384a200f5c3a Mon Sep 17 00:00:00 2001 From: Mark <162816078+markashton480@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:20:07 +0000 Subject: [PATCH] fix: pin deploy job to agent-workspace runner The deploy job uses SSH to connect to lintel-prod-01. When the lintel-prod-01 runner picks up the job, the Docker container cannot SSH back to its own host, causing 'dial tcp: i/o timeout'. Pin to the 'deploy' label which only exists on agent-workspace. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7ed02a6..3f40cb5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -215,7 +215,7 @@ jobs: deploy: if: github.event_name == 'push' && github.ref == 'refs/heads/main' - runs-on: ubuntu-latest + runs-on: deploy steps: - name: Deploy to lintel-prod-01 uses: appleboy/ssh-action@v1