diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dd280455d50800b40cd934bcfaaaed3aa1dc9da9..e0271e6cb7bf417e8adfdb7e09b476dffb8e1d01 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,4 +21,17 @@ build-image:
   extends: .dind_base
   script:
     - docker build -t $CI_REGISTRY_IMAGE slides/.
-    - docker push $CI_REGISTRY_IMAGE
\ No newline at end of file
+    - docker push $CI_REGISTRY_IMAGE
+
+stages:
+  - pages
+
+pages:
+  image: gitlab-registry.irstea.fr/nicolas.narcon/presentation-pyotb-foss4g
+  stage: pages
+  script:
+    - mv /public public
+    - mv slides/* public
+  artifacts:
+    paths:
+      - public
\ No newline at end of file