Reverts partially 00b7a33711720625fb8a9a6e9b5857de2f1f4d10 about guav… #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github-pages | |
on: | |
push: | |
branches: | |
# upload demo report only from main branch | |
- master | |
jobs: | |
build: | |
# Do not run on forks as unnecessary | |
if: github.repository_owner == 'damianszczepanik' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: adopt | |
- name: Generate demo report | |
run: mvn --batch-mode test | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
external_repository: damianszczepanik/damianszczepanik.github.io | |
personal_token: ${{ secrets.GH_PAGES_UPLOAD }} | |
publish_branch: master | |
publish_dir: target/demo/ |