From 7afa63387f844f8f6678d7bb5eb3dc14aae7ec95 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Romain=20Bron=C3=A8s?= <romain.brones@synchrotron-soleil.fr>
Date: Tue, 27 Feb 2024 18:34:15 +0100
Subject: [PATCH] fix: Fix pipeline

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a4ac237..e952c0a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,12 +14,12 @@ build-job:       # This job runs in the build stage, which runs first.
     - make build
     - echo "Compile complete."
   artifacts:
-    names: "FofbTool"
+    name: "FofbTool"
     paths:
       - dist/
 
 release_job:
-  stage: release
+  stage: deploy
   image: registry.gitlab.com/gitlab-org/release-cli:latest
   rules:
     - if: $CI_COMMIT_TAG                  # Run this job when a tag is created manually
-- 
GitLab