From d03ec099fbf4625a0ae5e4b71c79f1d7edfde4ab Mon Sep 17 00:00:00 2001 From: Faerbit Date: Tue, 27 Sep 2022 18:34:15 +0200 Subject: [PATCH] [ci] pipenv shell seems broken --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6a494ca..c9317e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,10 +21,9 @@ package_linux: - pip install pipenv - pipenv sync --dev script: - - pipenv shell - - VERSION=$(python -m setuptools_scm) - - python -m build -w - - pyinstaller --onefile --strip --name fime_${VERSION} src/main/fime.py + - VERSION=$(pipenv run python -m setuptools_scm) + - pipenv run python -m build -w + - pipenv run pyinstaller --onefile --strip --name fime_${VERSION} src/main/fime.py artifacts: paths: - dist/*.whl