17 lines
343 B
YAML
17 lines
343 B
YAML
image: "vato.ddns.net:8083/python-infra:buster"
|
|
|
|
stages:
|
|
- build
|
|
- deploy
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- cd python && python setup.py bdist_wheel && cd ..
|
|
|
|
deploy:
|
|
stage: deploy
|
|
script:
|
|
- python -m twine upload -u $TWINE_COMMON_CREDS_USR -p $TWINE_COMMON_CREDS_PSW python/dist/*
|
|
only:
|
|
- tags |