From 0d63d3bc4e118eff051e891dc15f2d62065393a9 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 19:33:14 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml 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