Skip to content

Merge pull request #161 from Marcusfam-RB/Refactor/remove-bs4-dependency #26

Merge pull request #161 from Marcusfam-RB/Refactor/remove-bs4-dependency

Merge pull request #161 from Marcusfam-RB/Refactor/remove-bs4-dependency #26

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
pip install mkdocs-material
pip install pymdown-extensions
pip install mkdocstrings[python]
- name: Build the documentation
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site