From 91de45bc8a3b4b1d3963aee2d03f5a5f11d3ba79 Mon Sep 17 00:00:00 2001
From: guilhemheinrich <zezongo@gmail.com>
Date: Thu, 14 Dec 2023 14:14:49 +0100
Subject: [PATCH] Fix

---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8330299..8737fc0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,12 +8,13 @@ prepare:release:
   before_script:
     - apk add --no-cache python3 py3-pip
     - python3 --version
+    - echo $(which python3)
     - pip3 --version
   script:
     - npm install          # Installer les dépendances si nécessaire
     - npm install -g nexe  # Installer Nexe si ce n'est pas déjà fait
     - npm run build        # Build TypeScript dans /dist 
-    - nexe --build -i ./dist/index.js -o bin.exe # Cré l'éxécutable avec nexe
+    - nexe --build --python $(which python3) -i ./dist/index.js -o bin.exe # Créé l'éxécutable avec nexe
   after_script:
     - echo "JOB_ID=$CI_JOB_ID" >> job.env
   artifacts:
-- 
GitLab