From 8cb13171d33cf6fe805122fa05c3922af868cc3a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20Bergstr=C3=B6m?= <davbe125@student.liu.se>
Date: Fri, 12 Oct 2018 11:21:46 +0200
Subject: [PATCH] Export the correct directory

---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9efade7..2a6f030 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,19 +1,19 @@
+variables:
+  GIT_SUBMODULE_STRATEGY: recursive
+
 pages:
   image: davidbergstrom/pycommandcenterenv
   stage: deploy
-  before_script:
-    - git submodule sync --recursive
-    - git submodule update --init --recursive
   script:
     - mkdir build
     - cd build
     - cmake ..
-    - make -j 3 library
+    - make library
     - cd ../docs
     - make html
     - cd ..
     - mkdir .public
-    - cp -r docs/_build/html .public
+    - cp -r docs/_build/html/* .public
     - mv .public public
   artifacts:
     paths:
-- 
GitLab