Skip to content

final demo + screenshots uploaded #11

final demo + screenshots uploaded

final demo + screenshots uploaded #11

Workflow file for this run

name: docs
on:
push:
branches:
- main
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
- name: Deploy docs
run: mkdocs gh-deploy --force