Update .gitlab-ci.yml file

This commit is contained in:
2025-07-20 20:10:34 +00:00
parent 3eeb888a90
commit 1d04cf34e3

View File

@@ -1,13 +1,11 @@
stages:
- build
build_linux:
stage: build
resource_group: build
script:
- cargo build --release
artifacts:
paths:
- target/release/polymusic
- target/release/polygomusic
- fonts/
- assets/
expire_in: 1 month
@@ -16,11 +14,12 @@ build_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/polymusic.exe
- target/x86_64-pc-windows-gnu/release/polygomusic.exe
- fonts/
- assets/
expire_in: 1 month