From 85366f1924e04a02c9243bb4e525dea5750feea8 Mon Sep 17 00:00:00 2001 From: Nick Spaargaren Date: Fri, 20 Dec 2024 09:37:36 +0000 Subject: [PATCH] Remove sphinx-action from build step and build normally --- .github/workflows/ubuntu.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 46af38f2d..e9cdea596 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -39,10 +39,10 @@ jobs: pip install -r requirements.txt - name: Build - uses: rickstaa/sphinx-action@master - with: - docs-folder: "./docs" - build-command: "sphinx-build -q -W -b dirhtml -d _build/doctrees . _build/html" + run: | + cd docs + sphinx-build -q -W -b dirhtml -d _build/doctrees . _build/html + cd ../ # Upload performance is awful on the many small files our build generates, # so it's compressed locally before uploading