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 a8ca7ef commit 6693fc1Copy full SHA for 6693fc1
.github/workflows/playwright-tests.yml
@@ -58,4 +58,12 @@ jobs:
58
uses: actions/upload-artifact@v4
59
with:
60
name: zip-archives
61
- path: '*.zip'
+ path: '*.zip'
62
+
63
+ # Step 8: Deploy Allure report to GitHub Pages
64
+ - name: Deploy Allure Report to GitHub Pages
65
+ if: always() # Ensure this step runs even if tests fail
66
+ uses: peaceiris/actions-gh-pages@v3
67
+ with:
68
+ github_token: ${{ secrets.GITHUB_TOKEN }}
69
+ publish_dir: target/site/allure-maven-plugin
0 commit comments