fix: pin deploy job to agent-workspace runner
All checks were successful
CI / nightly-e2e (pull_request) Has been skipped
CI / deploy (pull_request) Has been skipped
CI / pr-e2e (pull_request) Successful in 1m33s
CI / ci (pull_request) Successful in 1m37s

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.
This commit is contained in:
Mark
2026-03-04 11:20:07 +00:00
parent 17484fa815
commit 4796a08acc

View File

@@ -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