.gitlab-ci.yml: docs: use pip with docs/requirements.txt to install dependencies

This commit is contained in:
InsanePrawn 2022-10-18 02:54:55 +02:00
parent 8eef0af650
commit 786265fe75

View file

@ -39,7 +39,7 @@ build_docker:
.docs: .docs:
image: "${CI_REGISTRY_IMAGE}:dev" image: "${CI_REGISTRY_IMAGE}:dev"
before_script: before_script:
- pacman -Sy --noconfirm python-sphinx-{click,furo} - pip install -r docs/requirements.txt
script: script:
- (cd docs && make) - (cd docs && make)
- mv docs/html public - mv docs/html public