Website update (6.0.0) #63
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: publish-website | |
on: | |
workflow_dispatch: {} | |
push: | |
tags: | |
- '*' | |
run-name: "Website update (${{ github.ref_name }})" | |
jobs: | |
publish-website: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
jdk-version: [ 17 ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # to fetch all tags for proper version | |
- name: Set up JDK ${{ matrix.jdk-version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.jdk-version }} | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Generate KDocs | |
run: ./gradlew dokkaHtmlMultiModule | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install MkDocs Material | |
run: pip install mkdocs-material mkdocs-macros-plugin | |
- name: Deploy doc to GitHub pages | |
# --strict aborts on any warning | |
# --force forces the push to the repo (gh-pages branch) | |
run: mkdocs gh-deploy --strict --force |