From 7346e5a601a196611d15f3ec7c925b5ccd6d8e64 Mon Sep 17 00:00:00 2001 From: srcarter3 Date: Wed, 2 Sep 2020 12:14:51 -0600 Subject: [PATCH] Update sphinx_build_deploy.yml try specifying the docs/ dir when running things --- .github/workflows/sphinx_build_deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sphinx_build_deploy.yml b/.github/workflows/sphinx_build_deploy.yml index 3e10dfb..4899f37 100644 --- a/.github/workflows/sphinx_build_deploy.yml +++ b/.github/workflows/sphinx_build_deploy.yml @@ -22,7 +22,7 @@ jobs: run: | sudo apt install pandoc python -m pip install --upgrade pip - pip install -r requirements.txt + pip install -r docs/requirements.txt - name: Update Sphinx run: | @@ -30,6 +30,7 @@ jobs: - name: Build Sphinx documentation run: | + cd docs make html - name: Deploy to gh-pages