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 49f638a commit 7cdd813Copy full SHA for 7cdd813
1 file changed
.github/workflows/build.yml
@@ -159,6 +159,18 @@ jobs:
159
openidm/logs/**
160
e2e/playwright-report/**
161
e2e/test-results/**
162
+ - name: Print openidm logs
163
+ if: ${{ always() }}
164
+ shell: bash
165
+ run: |
166
+ if [ -d openidm/logs ]; then
167
+ find openidm/logs -type f -printf '%T@ %p\n' | sort -n | cut -d' ' -f2- | while read -r f; do
168
+ echo "===== $f ====="
169
+ cat "$f"
170
+ done
171
+ else
172
+ echo "openidm/logs directory not found"
173
+ fi
174
build-docker:
175
runs-on: 'ubuntu-latest'
176
services:
0 commit comments