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
path: root/.ci
diff options
context:
space:
mode:
Diffstat (limited to '.ci')
-rw-r--r--.ci/appveyor_build.py2
-rw-r--r--.ci/deploy.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/.ci/appveyor_build.py b/.ci/appveyor_build.py
index dfc854acf..a91439236 100644
--- a/.ci/appveyor_build.py
+++ b/.ci/appveyor_build.py
@@ -31,7 +31,7 @@ def get_gajim_version() -> str:
tag = os.environ.get('CI_COMMIT_TAG')
if tag is None:
exit('No tag found')
- return tag.removesuffix('gajim-')
+ return tag
def push_yaml_to_project() -> None:
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: