From 985f68d26e3a5ab9cc3da443dcf30399318b8c57 Mon Sep 17 00:00:00 2001 From: Jimmy Date: Fri, 22 May 2026 02:17:05 +0800 Subject: [PATCH] Add more debug output: key-file, path input, expanded path, and archive path on save --- action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yaml b/action.yaml index 79855e7..e847d9d 100644 --- a/action.yaml +++ b/action.yaml @@ -26,6 +26,11 @@ runs: EXPANDED_PATH=$(eval echo "${{ inputs.path }}") + echo "Key file: ${{ inputs.key-file }}" + echo "Path input: ${{ inputs.path }}" + echo "Expanded path: ${EXPANDED_PATH}" + echo "Archive path: ${ARCHIVE}" + if [ ! -d "$EXPANDED_PATH" ] || [ -z "$(ls -A "$EXPANDED_PATH" 2>/dev/null)" ]; then echo "Cache directory empty, skipping save" exit 0