diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c9f1818b1be945af3e6ede0b852dcd9bb5316c4e..743b817d0a685a0cca205312b913ffa14b478f87 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,9 +2,9 @@ cache:
   paths:
     - output/ # le répertoire où se trouve le HTML statique généré
 
-install:
+.pre:
   image: node:latest
-  stage: install
+  stage: .pre
   script:
     - cd /srv/blog/content/slides && yarn
 
@@ -12,7 +12,7 @@ build:
   image: docker.isima.fr/vimazeno/pelican_perso_python
   stage: build
   script:
-    - pelican
+    - PATH=/root/.local/bin:$PATH pelican
   
 deploy:
   image: docker.isima.fr/vimazeno/pelican_perso_kerberos