diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..253e269 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ + + +generate_exe: + image: python:3.8 + stage: build + script: + - cat /etc/*-release + - pip install pyinstaller + - pyinstaller app.py + - wine dist/app.exe + artifacts: + paths: + - dist/app.exe \ No newline at end of file