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 stage: build
script: script:
- cargo build --release - cargo build --release
- cp target/release/polygomusic .
artifacts: artifacts:
paths: paths:
- target/release/polymusic - polymusic
- fonts/ - fonts/
- assets/ - assets/
expire_in: 1 month expire_in: 1 month
@@ -18,9 +19,10 @@ build_windows:
stage: build stage: build
script: script:
- cargo build --release --target x86_64-pc-windows-gnu - cargo build --release --target x86_64-pc-windows-gnu
- cp target/x86_64-pc-windows-gnu/release/polygomusic.exe .
artifacts: artifacts:
paths: paths:
- target/x86_64-pc-windows-gnu/release/polymusic.exe - polymusic.exe
- fonts/ - fonts/
- assets/ - assets/
expire_in: 1 month expire_in: 1 month