From 4ef0a3de8801b3f6d92175327932b8c1cedc14d9 Mon Sep 17 00:00:00 2001 From: Luca Colagrande Date: Fri, 6 Sep 2024 16:02:44 +0200 Subject: [PATCH] REVERT: Temporarily run script in debug mode --- action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 25ec8d5..5c2cbfc 100644 --- a/action.yml +++ b/action.yml @@ -38,8 +38,13 @@ runs: shell: bash working-directory: ${{ inputs.working-directory }} run: | - pwd + ${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash --debug + echo $? hash=$(./list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash 2>/dev/null) + echo $? prerequisites=$(./list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} 2>/dev/null) + echo $? echo "hash=$hash" >> $GITHUB_OUTPUT + echo $? echo "prerequisites=$prerequisites" >> $GITHUB_OUTPUT + echo $?