From 8bfc7ff513f3902b2b65809d522bb44a5eee2586 Mon Sep 17 00:00:00 2001 From: ghadialhajj Date: Thu, 7 Dec 2023 15:19:05 +0100 Subject: [PATCH] Remove docs/ prefix --- .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 6c5a243..50c564e 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -42,11 +42,11 @@ jobs: - name: List Files in Publish Directory run: | - ls -la docs/build/html # Add this line to list the files in the publish directory + ls -la build/html # Add this line to list the files in the publish directory - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/build/html + publish_dir: build/html publish_branch: gh-pages