Skip to content

Doc Build

Doc Build #6

Workflow file for this run

name: Doc Build
on:
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.7'
- name: Install dependencies
run: |
pip install mkdocs-material
- name: Build and publish
run: |
cd ./doc/source && mkdocs build && cd ../
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: doc # The branch the action should deploy to.
folder: doc/source/site # The folder the action should deploy.