There was an error while loading. Please reload this page.
1 parent 22413aa commit 46dbf85Copy full SHA for 46dbf85
.github/workflows/playwright.yml
@@ -55,9 +55,10 @@ jobs:
55
# This step should always run, even if previous steps fail
56
if: always()
57
58
+ # Step to send email with the zip report
59
- name: Send email with zip report
60
run: |
- echo "Sending email with Playwright html zip report"
61
- echo "Playwright Test Case Report" | mail -s "Subject: Playwright Test Report" -A html-report.zip codendeavor@gmail.com
+ echo "Sending email with zip report"
62
+ echo "This is the body of the email" | mutt -s "Subject: Playwright Test Report" -a html-report.zip codendeavor@gmail.com
63
# This step should only run if the previous steps were successful
- if: always()
64
+ if: success()
0 commit comments