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 ..