From 2c968305c884a8875fb5e6f62904c36962bbb8c9 Mon Sep 17 00:00:00 2001 From: OG T Date: Sun, 29 Mar 2026 00:23:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(cd):=20=E5=A2=9E=E5=8A=A0=20Build=20timeout?= =?UTF-8?q?=20=E8=87=B3=2020=20=E5=88=86=E9=90=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build API/Web 超時導致 CD 失敗,增加超時時間: - Build API: 10m → 20m - Build Web: 15m → 20m Co-Authored-By: Claude Opus 4.5 --- .github/workflows/cd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 39bbfc04..90d99b3c 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -153,7 +153,7 @@ jobs: name: "Build API" runs-on: [self-hosted, harbor, k8s] needs: detect-changes - timeout-minutes: 10 + timeout-minutes: 20 # 2026-03-29: 增加超時時間 (Docker Build 需要更長時間) if: | !inputs.skip_api && ( needs.detect-changes.outputs.api == 'true' || @@ -191,7 +191,7 @@ jobs: name: "Build Web" runs-on: [self-hosted, harbor, k8s] needs: detect-changes - timeout-minutes: 15 + timeout-minutes: 20 # 2026-03-29: 增加超時時間 (Next.js Build 需要更長時間) if: | !inputs.skip_web && ( needs.detect-changes.outputs.web == 'true' ||