ci: debug patch workflow failure (#21369)

This commit is contained in:
Ankush Menat 2023-06-14 11:45:03 +05:30 committed by GitHub
parent 039be73af4
commit c2a562b82e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -148,4 +148,11 @@ jobs:
- name: Show bench output
if: ${{ always() }}
run: cat ~/frappe-bench/bench_start.log || true
run: |
cd ~/frappe-bench
cat bench_start.log || true
cd logs
for f in ./*.log*; do
echo "Printing log: $f";
cat $f
done