mmm-nsf-changer/.gitlab-ci.yml
2023-11-15 19:36:40 +00:00

11 lines
No EOL
210 B
YAML

generate_exe:
image: python:3.8
stage: build
script:
- sudo apt install wine
- pip install pyinstaller
- pyinstaller app.py
- wine dist/app.exe
artifacts:
paths:
- dist/app.exe