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