diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 09c8840..3334b64 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ test:docs: - apt update && apt install build-essential - pip install -r requirements.txt - pip install -r requirements-docs.txt - - pushd docs && DISABLE_METRICS=true sphinx-build -b html . ../public && popd + - pushd docs && DISABLE_METRICS=true python build_docs.py && popd rules: - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH @@ -70,7 +70,7 @@ pages: - apt update && apt install build-essential - pip install -r requirements.txt - pip install -r requirements-docs.txt - - pushd docs && DISABLE_METRICS=true sphinx-build -b html . ../public && popd + - pushd docs && DISABLE_METRICS=true python build_docs.py && popd artifacts: paths: - public