Skip to content

Commit

Permalink
REVERT: Temporarily run script in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Sep 6, 2024
1 parent 4ba5279 commit f4c9148
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
id: non-recursive-prerequisites
uses: ./
with:
target: test
working-directory: test
target: test
- name: Check non-recursive prerequisites
run: |
test "${{ steps.non-recursive-prerequisites.outputs.prerequisites }}" = "prereq"
Expand All @@ -26,6 +26,7 @@ jobs:
id: recursive-prerequisites
uses: ./
with:
working-directory: test
target: test
flags: --recursive
- name: Check recursive prerequisites
Expand Down
5 changes: 2 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ runs:
shell: bash
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)
hash=$(${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash 2>/dev/null)
prerequisites=$(${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} 2>/dev/null)
echo "hash=$hash" >> $GITHUB_OUTPUT
echo "prerequisites=$prerequisites" >> $GITHUB_OUTPUT

0 comments on commit f4c9148

Please sign in to comment.