Add gradle-daemon-jvm.properties and sync Java version references (#107) #110
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: Build KDoc | |
| on: | |
| push: | |
| branches: [main] | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| build: | |
| name: Build and publish KDoc | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 # keep in sync with gradle/gradle-daemon-jvm.properties | |
| cache: gradle | |
| - uses: gradle/actions/setup-gradle@v6 | |
| - name: Build KDoc | |
| run: ./gradlew --build-cache --configuration-cache lib:dokkaGenerate | |
| - name: Publish KDoc | |
| if: success() | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: lib/build/dokka/html | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |