From 1de679c46a5809afd6d7f56fd4116e8e8eb20187 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:19:44 +0100 Subject: [PATCH] fix: Fix the artifacts for build job --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8710561..e987729 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,6 @@ build-job: # This job runs in the build stage, which runs first. - echo "Compiling the code..." - make build - echo "Compile complete." - -artifacts: - paths: - dist/ + artifacts: + paths: + - dist/ -- GitLab