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-03-28 02:11:31 +0300
committerlovetox <philipp@hoerist.com>2022-03-28 02:11:31 +0300
commitf199469b655324b60268bd5b6bb9432823ccd59c (patch)
tree07d7acafdcfd2340f77847ed45da7ff02d3dce1c /.ci
parent44669fc7a011d855483461dbefa823b1a4d18712 (diff)
ci: Use real name for tarballs
Diffstat (limited to '.ci')
-rw-r--r--.ci/deploy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/deploy.py b/.ci/deploy.py
index f6d1f8cdb..b2603943e 100644
--- a/.ci/deploy.py
+++ b/.ci/deploy.py
@@ -109,7 +109,7 @@ def deploy_windows_release(ftp: FTP_TLS, filedir: Path) -> None:
def deploy_linux_nightly(ftp: FTP_TLS, filedir: Path) -> None:
ftp.cwd(LINUX_NIGHTLY_FOLDER)
filepath = find_linux_tarball(filedir)
- filename = f'gajim-{date.today().isoformat()}-test.tar.gz'
+ filename = f'gajim-{date.today().isoformat()}.tar.gz'
upload_file(ftp, filepath, name=filename)