Skip to content

Commit

Permalink
Publish allure reports to ghpages
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Nov 28, 2024
1 parent 655db98 commit 6ff17f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/playwright-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ jobs:
# Step 2: Unzip the Allure Report
- name: Unzip Allure Report
if: always()
run: unzip allure-report.zip -d target/site/
run: |
mkdir -p target/site/
unzip allure-report.zip -d target/site/
# Step 3: Deploy Allure Report to GitHub Pages
- name: Deploy Allure Report to GitHub Pages
Expand Down

0 comments on commit 6ff17f9

Please sign in to comment.