From 5a202c94978edd9d04ad271cbf7c7d7b05d6390e Mon Sep 17 00:00:00 2001 From: Ann-Kathrin Edrich <edrich@mbd.rwth-aachen.de> Date: Tue, 22 Oct 2024 18:00:44 +0200 Subject: [PATCH] Fix yml file --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af2acea..67dbcc6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,17 +10,17 @@ stages: build-docs: stage: build script: - - sphinx-build -b html source/ _build/html + - sphinx-build -b html docs/source/ _build/html artifacts: paths: - - _build/html + - docs/_build/html only: - main pages: stage: deploy script: - - mv _build/html public + - mv docs/_build/html public artifacts: paths: - public @@ -39,10 +39,10 @@ stages: build-docs: stage: build script: - - sphinx-build -b html source/ _build/html + - sphinx-build -b html docs/source/ _build/html artifacts: paths: - - _build/html + - docs/_build/html only: - main -- GitLab