aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/dump-log/action.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions/dump-log/action.yml')
-rw-r--r--.github/actions/dump-log/action.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/actions/dump-log/action.yml b/.github/actions/dump-log/action.yml
new file mode 100644
index 000000000..039583686
--- /dev/null
+++ b/.github/actions/dump-log/action.yml
@@ -0,0 +1,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