This commit is contained in:
jokob-sk
2025-02-09 07:46:11 +11:00
parent 57ccdf0b0c
commit 8b7431eae9
2 changed files with 83 additions and 0 deletions

24
.github/workflows/mkdocs.yml vendored Executable file
View File

@@ -0,0 +1,24 @@
name: Deploy MkDocs
on:
push:
branches:
- main # Change if your default branch is different
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install MkDocs
run: pip install mkdocs mkdocs-material
- name: Deploy MkDocs
run: mkdocs gh-deploy --force