From f6460b8db3de20c93fe3b8e0404715aefa6905f0 Mon Sep 17 00:00:00 2001 From: mrjk Date: Wed, 23 Mar 2022 03:05:56 -0400 Subject: [PATCH] Fix: Wrong path in CI --- .github/workflows/sphinx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 43cc352..95d61e9 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -42,7 +42,7 @@ jobs: key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} #key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} restore-keys: | - ${{ runner.os }}-pip- + ${{ runner.os }}-poetry- ${{ runner.os }}- # https://docs.github.com/en/actions/guides/building-and-testing-python#installing-dependencies # ^-- This gives info on installing dependencies with pip @@ -101,7 +101,7 @@ jobs: #if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/$defaultBranch' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/_build/ + publish_dir: ./docs/_build/html publish_branch: gh-pages force_orphan: true