We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad1e3c commit 712f287Copy full SHA for 712f287
.github/workflows/test-install-matrix.yaml
@@ -335,6 +335,17 @@ jobs:
335
console_password=${{ secrets.CONSOLE_PASSWORD }} \
336
--targets pe_nodes \
337
--verbose
338
+ - name: output value of bolt-debug.log
339
+ if: ${{ failure() }}
340
+ run: |
341
+ echo ::group::bolt-debug-log
342
+ if [ -f bolt-debug.log ]; then
343
+ echo "=== bolt-debug.log contents ==="
344
+ cat bolt-debug.log || echo "bolt-debug.log is empty"
345
+ else
346
+ echo "No bolt-debug.log file found"
347
+ fi
348
+ echo ::endgroup::
349
- name: Tear down test cluster
350
if: ${{ always() }}
351
continue-on-error: true
0 commit comments