Skip to content

Bug fixes

Bug fixes #10

Workflow file for this run

name: publish
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
name: Build and publish MkDocs website
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: pip install mkdocs-material mkdocs-minify-plugin
- name: Deploy MkDocs docu to GitHub Pages
run: mkdocs gh-deploy --force
working-directory: website