diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e7b34e1..aa90cfe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,13 @@ generate_exe: - image: python:3.8 + image: tobix/pywine:3.12 stage: build script: - - apt update -y - - apt install wine -y - - pip install pyinstaller - - pyinstaller app.py - - wine dist/app.exe + - ./opt/mkuserwineprefix + - wine py -m pip install pyinstaller + - wine py -m pip install pysimplegui + - wine py -m pip install requests + - wine py -m pyinstaller mmm-nsf-changer.py + - wine dist/mmm-nsf-changer.exe artifacts: paths: - - dist/app.exe + - dist/mmm-nsf-changer.exe