Skip to content

refactored code + fixed load bug + need to update UML #9

refactored code + fixed load bug + need to update UML

refactored code + fixed load bug + need to update UML #9

Workflow file for this run

name: Publish Docs
on: [push, workflow_dispatch]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- run: mvn install javadoc:javadoc
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: target/reports/apidocs
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/deploy-pages@v4