We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6a1e76 commit 75b6bc3Copy full SHA for 75b6bc3
.github/workflows/gradle.yml
@@ -36,6 +36,14 @@ jobs:
36
name: test-report
37
path: build/reports/tests/test/
38
39
+ - name: Deploy test report to GitHub Pages
40
+ if: success() || failure() # run this even if tests fail
41
+ uses: peaceiris/actions-gh-pages@v3
42
+ with:
43
+ github_token: ${{ secrets.GITHUB_TOKEN }}
44
+ publish_dir: build/reports/tests/test
45
+ publish_branch: gh-pages
46
+
47
- uses: "marvinpinto/action-automatic-releases@latest"
48
with:
49
repo_token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments