From f9ca96a5c47f0016458b25718bbd1f3704891a4c Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Wed, 9 Jul 2025 18:28:40 +0800 Subject: [PATCH] [KYUUBI #7131] Print cached engine archives ### Why are the changes needed? Recently, GHA fails frequently with downloading engines failure, this adds logs to display the cached engine archives. ### How was this patch tested? I will monitor GHA failure after merging. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #7131 from pan3793/gha-cache. Closes #7131 87a38e0d6 [Cheng Pan] Print cached engine archives Authored-by: Cheng Pan Signed-off-by: Cheng Pan --- .github/actions/cache-engine-archives/action.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/cache-engine-archives/action.yaml b/.github/actions/cache-engine-archives/action.yaml index c02d2adce..731813d0c 100644 --- a/.github/actions/cache-engine-archives/action.yaml +++ b/.github/actions/cache-engine-archives/action.yaml @@ -25,3 +25,6 @@ runs: with: path: /tmp/engine-archives key: engine-archives + - name: Show cached engine archives + shell: bash + run: ls -lh /tmp/engine-archives