From c227bc91a5ddf0034a92b57adf77747e62414c2f Mon Sep 17 00:00:00 2001 From: dukantic Date: Sun, 20 Jul 2025 20:13:45 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b26e83..12ea935 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,27 +1,28 @@ +stages: + - build + build_linux: stage: build - resource_group: build script: - cargo build --release artifacts: paths: - - target/release/polygomusic + - target/release/polymusic - fonts/ - assets/ expire_in: 1 month tags: - - all + - linux build_windows: stage: build - resource_group: build script: - cargo build --release --target x86_64-pc-windows-gnu artifacts: paths: - - target/x86_64-pc-windows-gnu/release/polygomusic.exe + - target/x86_64-pc-windows-gnu/release/polymusic.exe - fonts/ - assets/ expire_in: 1 month tags: - - all + - windows