This repository was archived by the owner on May 26, 2026. It is now read-only.
Replace README with repository integration notice #175
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: | |
| 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 | |
| - uses: gradle/actions/setup-gradle@v6 | |
| - name: Build KDoc | |
| run: ./gradlew --build-cache --configuration-cache dokkaGenerate | |
| - uses: actions/upload-pages-artifact@v5 | |
| 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 |