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:
authorlovetox <philipp@hoerist.com>2022-05-21 21:18:42 +0300
committerlovetox <philipp@hoerist.com>2022-05-21 21:19:55 +0300
commit269be7c4a0475f0d25f1e24a8ec8546922568eb6 (patch)
tree434e7282a20841e6b6795a8c0d9877b5c53b99ae /.ci
parent490174a01654f5dbe0c80908dc8295926cbea060 (diff)
ci: Remove tag strip code
In the future tags will only be the version without prefix
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: