From d7646e835ff5d2c8ea749f3b4e24121d992c1454 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Fri, 12 Apr 2024 22:44:34 +0200 Subject: [PATCH] ci: fixed twine upload if version did not change --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 953efcc..fdfd68d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -149,7 +149,7 @@ semver: - export GL_TOKEN=$CI_UPDATES - semantic-release -vv version - python -m build - - twine upload dist/* -u __token__ -p $CI_PYPI_TOKEN + - twine upload dist/* -u __token__ -p $CI_PYPI_TOKEN --skip-existing - semantic-release publish allow_failure: false