Uploading Reports

WebTau generates report/introduction HTML Reports. To make reports accessible after your build run, use this step: - name: Upload all reports uses: actions/upload-artifact@v2 if: failure() with: name: all-webtau-reports path: "*/**/webtau.report.html" retention-days: 1 To only upload failed reports, configure report/configuration#failed-report-path failed report name and update the step: - name: Upload failed test reports uses: actions/upload-artifact@v2 if: failure() with: name: failed-webtau-reports path: "*/**/*-failed*.html" retention-days: 2