Created the "upload_docs" workflow

This commit is contained in:
Mathias
2022-08-05 18:55:40 +02:00
parent ee5619835d
commit 4175a6adc8
+21
View File
@@ -0,0 +1,21 @@
name: Deploy documentation to GitHub
on:
push:
branches: [ "development" ]
paths: [ "docs/**" ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: pip install mkdocs-material
- name: Deploy documentation
run: mkdocs gh-deploy --force