Nova v0.17-alpha.23 #136
Workflow file for this run
This file contains 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 Documentation | |
on: | |
release: | |
types: [ created ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set Up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: adopt | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
- name: Run Dokka | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: | | |
dokkaHtmlMultiModule | |
--scan | |
- name: Deploy to Github Pages | |
uses: JamesIves/github-pages-deploy-action@v4.6.8 | |
with: | |
folder: build/dokka/htmlMultiModule |