Skip to content

Merge pull request #58 from ArbyC/patch-1 #49

Merge pull request #58 from ArbyC/patch-1

Merge pull request #58 from ArbyC/patch-1 #49

name: Build and Publish Documentation to GitHub Pages
on:
push:
branches:
- master
paths:
# Only rebuild documentation when docs have changed
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/publish_mkdocs.yml"
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10.13
publish_branch: gh-pages
- name: Install Dependencies
run: |
pip install mkdocs-material==8.5.11 mkdocs-jupyter==0.22.0 neoteroi-mkdocs==0.1.2 mkdocs-awesome-pages-plugin==2.9.2 lxml_html_clean==0.1.1
- name: Deploy Documentation
run: python -m mkdocs gh-deploy --force -f mkdocs.yml