mirror of
https://gitlab.com/GameFeverOnline/mmm-nsf-changer.git
synced 2025-12-17 01:17:43 -04:00
12 lines
223 B
YAML
12 lines
223 B
YAML
generate_exe:
|
|
image: python:3.8
|
|
stage: build
|
|
script:
|
|
- apt update
|
|
- apt install wine
|
|
- pip install pyinstaller
|
|
- pyinstaller app.py
|
|
- wine dist/app.exe
|
|
artifacts:
|
|
paths:
|
|
- dist/app.exe
|