feat: add .gitlab-ci.yml

This commit is contained in:
Georg K
2022-03-30 18:48:10 +03:00
parent 27c0d76e16
commit 4e8fb95c52
2 changed files with 15 additions and 3 deletions

11
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,11 @@
stages:
- package
publish-pypi:
stage: package
image: python:3.8
script:
- pip install -U setuptools wheel pip; pip install invoke
- invoke upload --pypi-user ${PYPI_REPO_USER} --pypi-password ${PYPI_REPO_PASSWORD} --pypi_url ${PYPI_REPO_URL}
only:
- tags