Jan
06/12/2024, 6:35 AMEmil Kantis
06/12/2024, 6:45 AM- name: Bundle the build report
if: failure()
run: find . -type d -name 'reports' | zip -@ -r build-reports.zip
- name: Upload the build report
if: failure()
uses: actions/upload-artifact@v4
with:
name: error-report
path: build-reports.zip
But if you're only interested in test-reports, you could look into the test report aggregation pluginJan
06/12/2024, 1:42 PMVampire
06/12/2024, 1:50 PM