Skip to content

removing TODOs

removing TODOs #15

Workflow file for this run

name: Build/Publish Develop Docs
on:
push:
branches:
- main
paths:
- '.github/workflows/docs-dev.yml'
- 'mkdocs.yml'
- 'docs/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: 'dev-docs'
cancel-in-progress: true
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.10.6
- name: Install Dependencies
run: |
pip install mkdocs-material
pip install mike
- name: Setup Docs Deploy
run: |
git config --global user.name "Docs Deploy"
git config --global user.email "[email protected]"
- name: Build Docs Website
run: mike deploy --push develop