[FIX] 實施生產環境 Runner 隔離\n\n1. 修改 deploy-prod.yaml 將 runs-on 設定為 [ubuntu-latest, prod]\n2. 確保生產環境任務只由 gitea_work 專用機器執行

This commit is contained in:
sky121113 2026-05-15 15:53:32 +08:00
parent 928a1a8370
commit b2e6e2567a

View File

@ -7,7 +7,7 @@ on:
jobs:
deploy-production:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, prod]
steps:
- name: Checkout Code
uses: actions/checkout@v3