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-27 16:00:55 +0300
committerlovetox <philipp@hoerist.com>2022-03-27 16:00:55 +0300
commit9fa3fb9e093a13e47c8c2cc6b7f5da3a2fee20af (patch)
treed2ef415d8d94b1899579df5493b024ba173f4ee1 /.ci
parent1fda4597a0f9695cd27ef605e4a3f600f9a22636 (diff)
chore: CI: Name nightly tarballs different
So we can compare them to the currenly running jobs
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 b2603943e..f6d1f8cdb 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()}.tar.gz'
+ filename = f'gajim-{date.today().isoformat()}-test.tar.gz'
upload_file(ftp, filepath, name=filename)