removing TODOs #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |