From e940e42618917927e2a4d58c7d1fd6c680afbbee Mon Sep 17 00:00:00 2001
From: Rebecca Kohlhaas <rebecca.kohlhaas@iws.uni-stuttgart.de>
Date: Tue, 9 Jul 2024 08:04:27 +0000
Subject: [PATCH] Pipeline: variation on pages build

---
 .gitlab-ci.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f5528f44d..e0b92f181 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -81,7 +81,11 @@ pages-job:
   stage: pages
   script:
   - pip install -U sphinx
-  - sphinx-build -b html . public
+  - cd docs
+  - ./make html
+  - cd ../
+  - cp docs/build/html public
+  #- sphinx-build -b html . public
   artifacts:
     paths:
     - public
-- 
GitLab