diff --git a/action.yml b/action.yml index 25ec8d5..bcd3d9d 100644 --- a/action.yml +++ b/action.yml @@ -39,7 +39,13 @@ runs: working-directory: ${{ inputs.working-directory }} run: | pwd - hash=$(./list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash 2>/dev/null) - prerequisites=$(./list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} 2>/dev/null) + ${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash --debug + echo $? + hash=$(${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash 2>/dev/null) + echo $hash + prerequisites=$(${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} 2>/dev/null) + echo $prerequisites echo "hash=$hash" >> $GITHUB_OUTPUT + echo $? echo "prerequisites=$prerequisites" >> $GITHUB_OUTPUT + echo $?