ci(gitea): CD 佇列模式 - 等待前一個 run 完成
All checks were successful
CD Pipeline / build-and-deploy (push) Successful in 3m44s
E2E Health Check / e2e-health (push) Successful in 15s

新增 concurrency 設定:
- group: cd-deploy-${{ github.ref }}
- cancel-in-progress: false

避免多個 CD 同時執行造成資源競爭

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
OG T
2026-03-30 01:21:53 +08:00
parent 1b89ef399c
commit 3b0b49845e

View File

@@ -14,6 +14,11 @@ on:
branches: [main]
workflow_dispatch:
# 2026-03-30 ogt: 佇列模式 - 等待前一個 run 完成,不取消
concurrency:
group: cd-deploy-${{ github.ref }}
cancel-in-progress: false
env:
HARBOR: 192.168.0.110:5000
# Harbor Proxy Cache (指向 DockerHub 的內部 Mirror避免拉取限額)