From 1748f4819778167c62cc780bd8c8996353f61c38 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 10 May 2023 16:19:22 +0200 Subject: [PATCH] Publish aarch64_musl. --- .github/scripts/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/common.py b/.github/scripts/common.py index 0aa2429..3654aec 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -49,6 +49,8 @@ PLATFORM_TO_RELEASE = { "armv8_mixed": "{os}-armv8".format(os=RELEASE_OS_NAME), "aarch64_static": "{os}-aarch64".format(os=RELEASE_OS_NAME), "aarch64_mixed": "{os}-aarch64{extra}".format(os=RELEASE_OS_NAME, extra=EXTRA_NAME), + "aarch64_musl_static": "{os}-aarch64-musl".format(os=RELEASE_OS_NAME), + "aarch64_musl_mixed": "{os}-aarch64-musl".format(os=RELEASE_OS_NAME), "i586_static": "{os}-i586".format(os=RELEASE_OS_NAME), "macOS_arm64_static": "{os}-arm64".format(os=RELEASE_OS_NAME), "macOS_arm64_mixed": "{os}-arm64".format(os=RELEASE_OS_NAME),