Update .gitea/workflows/action.yaml
Build and Publish / build (push) Successful in 23s
Build and Publish / Build and Deploy Docs (push) Failing after 28s

This commit is contained in:
2026-01-05 13:22:58 +01:00
parent 4f0f261e96
commit 19b4373377
+2 -2
View File
@@ -112,10 +112,10 @@ jobs:
# prefer the sphinx-apidoc CLI if available; otherwise try module fallback
if command -v sphinx-apidoc > /dev/null 2>&1; then
sphinx-apidoc -o modules/ ../src --separate --module-first --force --remove-old
sphinx-apidoc -o modules/ ../daq/src --separate --module-first --force --remove-old
else
# module fallback: some Sphinx installs expose the module at sphinx.ext.apidoc
python -m sphinx.ext.apidoc -o modules/ ../src --separate --module-first --force --remove-old
python -m sphinx.ext.apidoc -o modules/ ../daq/src --separate --module-first --force --remove-old
fi