Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,34 @@ jobs:
- uses: actions/checkout@v6

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v5
with:
java-version: 17

- name: Set up grahpviz
run: sudo apt-get install graphviz

- name: Build with xvfb enabled
uses: GabrielBB/xvfb-action@v1.0
uses: GabrielBB/xvfb-action@v1.7
with:
run: mvn -B package

- name: upload webtau test report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: webtau report
path: znai-tests/src/test/groovy/webtau.report.html
retention-days: 3
- name: upload testing examples webtau test report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: webtau testing examples report
path: znai-testing-examples/examples/webtau.report.html
retention-days: 3
- name: upload screenshots when build fails
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: doc screenshots
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/documentation-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- run: git fetch --prune --unshallow

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v5
with:
java-version: 17

Expand All @@ -25,12 +25,12 @@ jobs:
run: mvn versions:set -DnewVersion=$(git describe --abbrev=0)

- name: Build with xvfb enabled
uses: GabrielBB/xvfb-action@v1.0
uses: GabrielBB/xvfb-action@v1.7
with:
run: mvn -B package

- name: deploy documentation
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./znai-docs/target/znai
Expand Down
Loading