Skip to content

Change the install dir to backend in doc build action #2

Change the install dir to backend in doc build action

Change the install dir to backend in doc build action #2

Workflow file for this run

name: Build and Publish Sphinx Docs
on:
push:
branches: [gh-action]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install dependencies
run: |
cd backend
python -m venv venv
make install
- name: Build HTML
run: |
mkdocs build