Merge pull request #5 from TaeseongYun/fix/readme-typo-link #11
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: ReleaseDocs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| publish_dokka: | |
| name: Dokka docs | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v5.0.0 | |
| with: | |
| ref: main | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4.7.1 | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - name: Generate Dokka HTML docs | |
| run: ./gradlew dokkaHtmlMultimodule | |
| - name: Deploy to GitHub pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./build/dokka/htmlMultiModule | |
| publish_branch: gh-pages |