From efa2f8e3c9674a82fc8c176a4b0e7b0f75492625 Mon Sep 17 00:00:00 2001 From: Mutzi Date: Fri, 20 Jan 2023 16:48:49 +0100 Subject: [PATCH] Fix CI --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ae1ec1..3b44862 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ build_glibc: image: rust:bullseye script: - cargo build --release - - cp target/release/dotfiles_loader ../installer-amd64-glibc + - cp target/release/dotfiles_installer ./installer-amd64-glibc artifacts: paths: - installer-amd64-glibc @@ -20,9 +20,8 @@ build_muslc: image: rust:alpine script: - apk add pkgconf musl-dev - - cd backend - cargo build --release - - cp target/release/dotfiles_loader ../installer-amd64-muslc + - cp target/release/dotfiles_installer ./installer-amd64-muslc artifacts: paths: - installer-amd64-muslc