From a7d8cba46ddb4e26e2ebe08b3b0bf1ef428dbfd4 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 6 Aug 2025 16:22:07 +0200 Subject: [PATCH] Update action.yml --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index ebf0fb3..4e8876d 100644 --- a/action.yml +++ b/action.yml @@ -112,6 +112,7 @@ runs: if: inputs.custom_shell_commands != '' shell: bash run: | + OUTPUT_DIR="outputs" LOG_FILE="${OUTPUT_DIR}/custom-shell.log" @@ -125,6 +126,7 @@ runs: echo "❌ Custom shell failed" >> $LOG_FILE echo "Exit Code: 1" >> $LOG_FILE echo "Exit Code: 1" + cat $LOG_FILE exit 1 }