From fc3abd63ec8a6dc8f1e9bd5c307bd83fb47fcb8e 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