
| Current Path : /var/www/web-klick.de/dsh/order_model/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/web-klick.de/dsh/order_model/.gitlab-ci.yml |
stages:
- build
- deploy
build:
image: python:3.8.11-slim-buster
stage: build
environment:
name: test
before_script:
- python -V
- pip install pipenv
- pipenv install --dev
script:
- pipenv run python -m compileall .
except:
- release
- master
deploy_package:
image: python:3.8.11-slim-buster
stage: deploy
environment:
name: deploy
only:
refs:
- master
- release
variables:
- $CI_COMMIT_MESSAGE =~ /release-to-repository/
before_script:
- pip install twine wheel
script:
- python setup.py sdist bdist_wheel
- twine upload dist/*
artifacts:
paths:
- dist/