From c3024a2389d4328799e7727e6281f3872b6b2b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr> Date: Sun, 31 Mar 2024 15:31:43 +0200 Subject: [PATCH] Change artifacts path --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1a7792..af711e8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,9 +9,10 @@ build:release: stage: build script: - cargo build --release + - mv target/release/webcalc-rs . artifacts: paths: - - target/release/webcalc-rs + - webcalc-rs rustdoc: stage: build -- GitLab