From b275575cd7be60b533b85e37e9fe19414cb302d1 Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Thu, 29 Sep 2022 10:07:25 +0200 Subject: [PATCH] ci(deploy): Provide PyPi credentials --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 39ac286..16d750c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,9 +30,10 @@ pytest: path: coverage.xml publish: + stage: publish image: python:3.10-alpine before_script: - apk add poetry - poetry install script: - - poetry publish --build + - poetry publish --username __token__ --password $PYPI_TOKEN --build -- GitLab