From 2157a1a02365b4a27f2b9f9f0730cbe83cc41b26 Mon Sep 17 00:00:00 2001 From: Eduard Date: Mon, 13 Jan 2025 08:24:52 +0100 Subject: [PATCH] ci: try fix missing submodule docs --- .github/workflows/docs.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1c05545..852bcfc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,10 +11,14 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - - name: Build HTML - uses: ammaraskar/sphinx-action@master - with: - docs-folder: docs + - uses: actions/setup-python@v5 + - name: Install dependencies + run: | + pip install sphinx + - name: Sphinx build + run: | + cd docs + make html - name: Upload artifacts uses: actions/upload-artifact@v4 with: