Skip to content

[Merge after EP 0010] Housekeeping #99

[Merge after EP 0010] Housekeeping

[Merge after EP 0010] Housekeeping #99

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install
run: |
pip install -r requirements.txt
- name: Build Docs
run: mkdocs build
- name: Deploy
if: endsWith(github.ref, '/main')
run: mkdocs gh-deploy --force