Make bionic CI create archive containing bionic in the name.

This commit is contained in:
Matthieu Gautier 2023-04-19 15:35:13 +02:00
parent 4aa613c8e6
commit fffbd122c9
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ else:
RELEASE_OS_NAME = "macos" if OS_NAME == "osx" else "linux" RELEASE_OS_NAME = "macos" if OS_NAME == "osx" else "linux"
PLATFORM_TO_RELEASE = { 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), "native_static": "{os}-x86_64".format(os=RELEASE_OS_NAME),
"win32_static": "win-i686", "win32_static": "win-i686",
"armhf_static": "{os}-armhf".format(os=RELEASE_OS_NAME), "armhf_static": "{os}-armhf".format(os=RELEASE_OS_NAME),