Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Docs should still work #317

Docs should still work

Docs should still work #317

Workflow file for this run

name: Build & publish docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
# Ensure Java installation to run Gradle
- uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
cache-dependency-path: './docs/mkdocs-material-plugins.txt'
- name: 'Install mkdocs-material and plugins'
run: |
python -m pip install mkdocs-material
python -m pip install -r ./docs/mkdocs-material-plugins.txt
- name: 'Build & deploy docs'
run: mkdocs gh-deploy --force