aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/dump-log/action.yml
blob: 039583686abbecb4654d6e18c6000a602b1f9976 (plain)
1
2
3
4
5
6
7
name: 'Dump Logs'
description: 'Dump logs of successful run'
runs:
  using: 'composite'
  steps:
    - run: find . -name "*.log" -exec echo -e "\n\n        @@@@@ {} @@@@@\n\n" \; -exec cat {} \;
      shell: bash