Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.ci/deploy.py')
-rw-r--r--.ci/deploy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/deploy.py b/.ci/deploy.py
index b2603943e..b25df2986 100644
--- a/.ci/deploy.py
+++ b/.ci/deploy.py
@@ -44,7 +44,7 @@ def get_gajim_tag() -> str:
tag = os.environ.get('CI_COMMIT_TAG')
if tag is None:
exit('No tag found')
- return tag.removeprefix('gajim-')
+ return tag
def find_linux_tarball(filedir: Path) -> Path: