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