1
0
Fork 0
mirror of https://github.com/ludeeus/action-shellcheck.git synced 2024-08-16 10:09:53 +02:00

Cleanup debug information (#67)

This commit is contained in:
Joakim Sørensen 2022-09-03 10:45:55 +02:00 committed by GitHub
parent 10434c2598
commit 20fbf19cec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -212,12 +212,6 @@ runs:
echo "::set-output name=filepaths::${filepaths[@]}" echo "::set-output name=filepaths::${filepaths[@]}"
echo "::set-output name=statuscode::$statuscode" echo "::set-output name=statuscode::$statuscode"
- name: Print information - name: Exit action
shell: bash shell: bash
run: | run: exit ${{steps.check.outputs.statuscode}}
echo "Files: ${{ steps.check.outputs.filepaths }}"
echo "Excluded: ${{ steps.exclude.outputs.excludes }}"
echo "Options: ${{ steps.options.outputs.options }}"
echo "Status code: ${{ steps.check.outputs.statuscode }}"
exit ${{steps.check.outputs.statuscode}}