Update .gitlab-ci.yml file

This commit is contained in:
Timothy GFO 2023-11-15 19:33:14 +00:00
parent d12b64ca73
commit 0d63d3bc4e

13
.gitlab-ci.yml Normal file
View file

@ -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