Skip to content

Merge pull request #105 from cogip/98-dashboard-fix-theme-on-menu-scr… #44

Merge pull request #105 from cogip/98-dashboard-fix-theme-on-menu-scr…

Merge pull request #105 from cogip/98-dashboard-fix-theme-on-menu-scr… #44

Workflow file for this run

name: Build Documentation using MkDocs
on:
push:
branches: [master]
jobs:
build:
name: Deploy Documentation
runs-on: ubuntu-22.04
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
lfs: 'true'
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Debian dependencies
run: |
sudo apt-get update
sudo apt-get install -qq libegl1
- name: Install Python dependencies
run: |
python3.11 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip wheel setuptools
pip install -e .[dev]
- name: Deploy doc
run: |
source venv/bin/activate
mkdocs gh-deploy --force