Skip to content

Allow publish-docs CI to run #3

Allow publish-docs CI to run

Allow publish-docs CI to run #3

Workflow file for this run

name: Publish docs
on:
push:
# Want to remove it running on every commit eventually
branches:
- main
tags:
- v*
jobs:
deploy_docs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install mkdocs
python3 -m pip install mkdocs-material
- uses: gradle/gradle-build-action@v2
- run: ./gradlew :dokkaHtmlMultiModule
- name: Build site
run: mkdocs build
# TODO: Copy over Dokka API build to ./site
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site