From 3def02d18e457da35b43241c6665092d2eef57b1 Mon Sep 17 00:00:00 2001 From: haotool Date: Sat, 27 Jun 2026 19:12:28 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E4=BF=AE=E6=AD=A3=20E2E=20Merge=20R?= =?UTF-8?q?eports=20=E4=B8=8B=E8=BC=89=E8=B7=AF=E5=BE=91=E5=B0=8E=E8=87=B4?= =?UTF-8?q?=20main=20CI=20=E9=95=B7=E6=9C=9F=E7=B4=85=E7=87=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - E2E Full 兩 shard 全綠,但 merge-reports 因 blob 下載到 repo 根而 cwd 在 apps/ratewise 找不到報告而失敗 - download-artifact path 改為 apps/ratewise/all-blob-reports,對齊 pnpm --filter exec 的套件工作目錄 - 修正後 main push 的 E2E Merge Reports 可正常合併報告,main CI 由長期紅燈轉綠 測試:本機核對 yaml 路徑與 cwd 對齊;修正後以 main push 的 E2E Merge Reports 由 fail 轉 pass 驗證 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 852c2e6e3..c65f5cc1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -375,7 +375,8 @@ jobs: - name: Download blob reports uses: actions/download-artifact@v4 with: - path: all-blob-reports + # 下載至 apps/ratewise 內,對齊 merge 指令的 cwd(pnpm --filter exec 以套件目錄為工作目錄)。 + path: apps/ratewise/all-blob-reports pattern: blob-report-* merge-multiple: true