Update .gitlab-ci.yml file

This commit is contained in:
2025-07-20 20:29:16 +00:00
parent 4880c81d80
commit 2db3bfbc6d

View File

@@ -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