Files
Polymusic/.gitlab-ci.yml
2025-07-20 20:13:45 +00:00

29 lines
475 B
YAML

stages:
- build
build_linux:
stage: build
script:
- cargo build --release
artifacts:
paths:
- target/release/polymusic
- fonts/
- assets/
expire_in: 1 month
tags:
- linux
build_windows:
stage: build
script:
- cargo build --release --target x86_64-pc-windows-gnu
artifacts:
paths:
- target/x86_64-pc-windows-gnu/release/polymusic.exe
- fonts/
- assets/
expire_in: 1 month
tags:
- windows