From 2db3bfbc6d1931420e5b3051fa3abdca02b6fbc1 Mon Sep 17 00:00:00 2001 From: dukantic Date: Sun, 20 Jul 2025 20:29:16 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 12ea935..40615fa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,10 @@ build_linux: stage: build script: - cargo build --release + - cp target/release/polygomusic . artifacts: paths: - - target/release/polymusic + - polymusic - fonts/ - assets/ expire_in: 1 month @@ -18,9 +19,10 @@ build_windows: stage: build script: - cargo build --release --target x86_64-pc-windows-gnu + - cp target/x86_64-pc-windows-gnu/release/polygomusic.exe . artifacts: paths: - - target/x86_64-pc-windows-gnu/release/polymusic.exe + - polymusic.exe - fonts/ - assets/ expire_in: 1 month