From d7025cbc58bcefe3a348be4642484a7102cef3cb Mon Sep 17 00:00:00 2001
From: Vincent Mazenod <vmazenod@gmail.com>
Date: Fri, 26 Aug 2022 17:54:00 +0200
Subject: [PATCH] fix ci

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c9f1818..743b817 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
-- 
GitLab