We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd53889 commit 10c3930Copy full SHA for 10c3930
.github/workflows/build-validation.yml
@@ -68,6 +68,21 @@ jobs:
68
name: Package
69
path: client/build/libs
70
71
+ - name: Deploy Test Report to GitHub Pages
72
+ if: always()
73
+ run: |
74
+ mkdir -p gh-pages
75
+ cp -r client/build/reports/tests/integrationTest/* gh-pages/
76
+ touch gh-pages/.nojekyll # Ensures GitHub Pages processes static files correctly
77
+
78
+ - name: Deploy to GitHub Pages
79
80
+ uses: JamesIves/github-pages-deploy-action@v4
81
+ with:
82
+ branch: gh-pages
83
+ folder: gh-pages
84
+ clean: true # Ensures old files are removed
85
86
- name: Fail the job if tests failed
87
if: env.TEST_FAILED == 'true'
88
run: exit 1
0 commit comments