Updated docs

This commit is contained in:
Amith Koujalgi 2023-12-26 14:40:33 +05:30
parent c8b8a4df11
commit 3c018295b0

View File

@ -39,9 +39,6 @@ jobs:
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn --file pom.xml -U clean package
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
@ -49,7 +46,9 @@ jobs:
node-version: '20.x'
- run: cd docs && npm ci
- run: cd docs && npm run build
- run: cp -r ./target/apidocs/. ./docs/build/apidocs
- name: Build with Maven
run: mvn --file pom.xml -U clean package && cp -r ./target/apidocs/. ./docs/build/apidocs
- name: Setup Pages
uses: actions/configure-pages@v3