From 499ef2e2526eecb7c155acc69faa94904d2adaf6 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Tue, 27 Sep 2022 18:37:41 +0200 Subject: [PATCH] [ci] Fix main.py path --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c9317e2..368fc77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,8 +22,9 @@ package_linux: - pipenv sync --dev script: - VERSION=$(pipenv run python -m setuptools_scm) + - echo $VERSION - pipenv run python -m build -w - - pipenv run pyinstaller --onefile --strip --name fime_${VERSION} src/main/fime.py + - pipenv run pyinstaller --onefile --strip --name fime_${VERSION} src/fime/main.py artifacts: paths: - dist/*.whl