From 8cffd5b9b8e168bbfc9d8c4231c38acb4d8ab08b Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 7 Dec 2023 22:21:47 +0100 Subject: [PATCH] fix docs --- .github/workflows/update-docs.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index 49a1451..9134ef8 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -21,19 +21,15 @@ jobs: with: python-version: 3.11 - - name: Install Dependencies + - name: Install Dependencies & generate Docs run: | + sudo apt-get install python3-sphinx python3 -m venv venv source venv/bin/activate python -m pip install --upgrade pip pip install wheel pip install -r requirements.txt pip install -e . - cd .. - - - name: Generate Docs - run: | - sudo apt-get install python3-sphinx pip install sphinxemoji sphinx_rtd_theme recommonmark cd docsource && make github && cd ..