From b00c3204960518332f930ddf5a986f649b8f3c9f Mon Sep 17 00:00:00 2001 From: WangDL Date: Wed, 20 May 2026 17:11:02 +0800 Subject: [PATCH] fix: target prod runner (runs-on: prod) instead of ubuntu-latest Root cause: deploy.yml used runs-on: ubuntu-latest, which matched the 4C4G web runner instead of the 8C32G prod runner. The web runner doesn't have access to /opt/zhixi/, systemd, or Docker. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index bbca965..b7e9569 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -6,7 +6,7 @@ on: jobs: build-and-deploy: - runs-on: ubuntu-latest + runs-on: prod steps: - name: Checkout latest code run: |