Bump version #26
This file contains hidden or 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: Javadocs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Build Javadocs | |
| run: | | |
| echo "Building javadocs with gradle" | |
| ./gradlew clean alljavadoc | |
| echo "Moving to javadocs directory:" | |
| cd build/docs/javadoc | |
| echo "Creating .nojekyll to have Github pages deploy html as is:" | |
| touch .nojekyll | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages # The branch the action should deploy to. | |
| folder: build/docs/javadoc # The folder the action should deploy. |