Skip to content

Fixed the build of gh pages. #2

Fixed the build of gh pages.

Fixed the build of gh pages. #2

Workflow file for this run

# Based on: https://blog.elmah.io/deploying-a-mkdocs-documentation-site-with-github-actions/
name: build
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Setup MkDocs
run: |
pip install mkdocs-material
pip install mkdocs-git-revision-date-localized-plugin
pip install mike
- name: Build website
run: mkdocs gh-deploy --verbose