From 7f46f936b1ac3dd3c45b33fdb61fc5b2b32b6fef Mon Sep 17 00:00:00 2001 From: truonthu Date: Fri, 15 Nov 2024 15:05:26 +0100 Subject: [PATCH] changed command for building sphinx --- .github/workflows/quarto-build-test.yml | 2 +- .github/workflows/quarto-deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quarto-build-test.yml b/.github/workflows/quarto-build-test.yml index 6d288e4..0d1a84f 100644 --- a/.github/workflows/quarto-build-test.yml +++ b/.github/workflows/quarto-build-test.yml @@ -45,7 +45,7 @@ jobs: - name: Build Sphinx documentation run: | cd docs - make html + conda run -n blogqa make html # Compile Quarto site and check for compiling errors - name: Check if Quarto site compiles diff --git a/.github/workflows/quarto-deploy.yml b/.github/workflows/quarto-deploy.yml index 56267e5..87077a0 100644 --- a/.github/workflows/quarto-deploy.yml +++ b/.github/workflows/quarto-deploy.yml @@ -47,7 +47,7 @@ jobs: - name: Build Sphinx documentation run: | cd docs - make html + conda run -n blogqa make html # Commit changes to gh-pages branch - name: Switch to gh-pages branch