docs: update CHANGELOG.md to the respective changes #117
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: Deploy Javadoc | |
| on: | |
| push: | |
| branches: | |
| - production | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| cache: maven | |
| - name: Build aggregated Javadoc | |
| run: mvn -B -DskipTests javadoc:aggregate -Dmaven.javadoc.failOnError=false | |
| - name: Add CNAME and .nojekyll to Javadoc output | |
| run: | | |
| echo "docs.pathetic.site" > docs/apidocs/CNAME | |
| touch docs/apidocs/.nojekyll | |
| - name: Deploy JavaDoc 🚀 | |
| uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| javadoc-branch: javadoc | |
| java-version: 17 | |
| project: maven | |
| custom-command: mvn -B -DskipTests javadoc:aggregate -Dmaven.javadoc.failOnError=false | |
| javadoc-source-folder: docs/apidocs | |
| target-folder: . |