From afb1ff6bb4ce6987d64fc200cd1f43316eb56f36 Mon Sep 17 00:00:00 2001 From: Nicholas Felt Date: Fri, 27 Oct 2023 21:21:57 -0700 Subject: [PATCH] fix: Update path for documentation publishing workflow to point to the correct folder after unzipping the artifact. --- .github/workflows/deploy-documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-documentation.yml b/.github/workflows/deploy-documentation.yml index e2b7507b..06f443c3 100644 --- a/.github/workflows/deploy-documentation.yml +++ b/.github/workflows/deploy-documentation.yml @@ -29,11 +29,11 @@ jobs: - name: Unzip Documentation Results run: | unzip docs_results.zip - rm -r docs_results/.results_docs/html/.doctrees + rm -r .results_docs/html/.doctrees - name: Upload To Pages uses: actions/upload-pages-artifact@v2 with: - path: docs_results/.results_docs/html + path: .results_docs/html - name: Deploy To Pages uses: actions/deploy-pages@v2 id: deployment