From 0fb7dc63a792022d9e9a4f8dda107b07ad6f8330 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 2 Feb 2022 16:07:24 +0100 Subject: [PATCH] Correctly detect if project is openzim or kiwix organization --- .github/scripts/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/common.py b/.github/scripts/common.py index 609753b..1facde2 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -194,7 +194,7 @@ def upload(file_to_upload, host, dest_path): def upload_archive(archive, project, make_release): - if project.startswith("kiwix-"): + if project.startswith("kiwix-") or project in ['libkiwix']: host = "ci@download.kiwix.org" dest_path = "/data/download/" else: