From 8401ee5ea3f2b5b9053215a1cf64d48732f8db51 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 30 Aug 2024 09:41:45 +0200 Subject: [PATCH] Fix kiwix-desktop archive name on Windows --- .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 c6d8f24..fb5c7ad 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -489,7 +489,7 @@ def create_desktop_image(make_release): app_name = "org.kiwix.desktop.{}.flatpak".format(postfix) print_message("archive is {}", build_path) elif platform.system() == "Windows": - archive_basename = "Kiwix-{}-win-amd64".format(postfix) + archive_basename = "kiwix-desktop_windows_x64_{}".format(postfix) working_dir = INSTALL_DIR / archive_basename build_path = working_dir.with_suffix(".zip") app_name = build_path.name