Skip to content

[maven-release-plugin] prepare for next development iteration #245

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #245

# This workflow will build the project Javadoc with Maven, and publish it in the gh-pages branch
name: Publish Javadoc
on:
push:
branches: [ master ]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Generate Javadoc
run: mvn javadoc:aggregate --batch-mode --no-transfer-progress --file pom.xml
- name: Publish Javadoc 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: target/site/apidocs # The folder the action should deploy.