diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fe6de7e9e89d788d578c76e39b172d005179b785
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+
+pages:
+  stage: deploy
+  image: registry-gitlab.pasteur.fr/hub/courses/sphinx-env/sphinx:1.4.1
+  script:
+    - make html
+    - mv build/html/ public/
+  artifacts:
+    paths:
+      - public
+  only:
+    - master
\ No newline at end of file