fix: target prod runner (runs-on: prod) instead of ubuntu-latest
Some checks failed
Deploy API Server / build-and-deploy (push) Failing after 3m44s

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 <noreply@anthropic.com>
This commit is contained in:
WangDL 2026-05-20 17:11:02 +08:00
parent 2d6c02609e
commit b00c320496

View File

@ -6,7 +6,7 @@ on:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
runs-on: prod
steps:
- name: Checkout latest code
run: |