From fffbd122c917cd1401d70c5a4bd56744aa266718 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 19 Apr 2023 15:35:13 +0200 Subject: [PATCH] =?UTF-8?q?Make=20bionic=20CI=C2=A0create=20archive=20cont?= =?UTF-8?q?aining=20bionic=20in=20the=20name.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 87a2e59..647661f 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -47,7 +47,7 @@ else: RELEASE_OS_NAME = "macos" if OS_NAME == "osx" else "linux" PLATFORM_TO_RELEASE = { - "native_mixed": "{os}-x86_64".format(os=RELEASE_OS_NAME), + "native_mixed": "{os}-x86_64{extra}".format(os=RELEASE_OS_NAME, extra = "-bionic" if OS_NAME == "bionic" else ""), "native_static": "{os}-x86_64".format(os=RELEASE_OS_NAME), "win32_static": "win-i686", "armhf_static": "{os}-armhf".format(os=RELEASE_OS_NAME),