Skip to content

v1.2.0

v1.2.0 #34

Workflow file for this run

name: Publish MkDocs
on:
release:
types: [released]
workflow_dispatch:
jobs:
publish_mkdocs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Rye
run: |
curl -sSf https://rye.astral.sh/get | RYE_INSTALL_OPTION="--yes" bash
echo "$HOME/.rye/shims" >> $GITHUB_PATH
- name: Install MkDocs & Plugins
run: rye sync
- name: Publish document
run: rye run mkdocs gh-deploy --force