From f34d1b1ea89cefe5a8f620fe0eed09306ee4b5d4 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Tue, 3 Sep 2024 17:12:24 +0100 Subject: [PATCH] Distribute MacOS build as a zip archive --- .ci/pack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/pack.sh b/.ci/pack.sh index 67275954a..f795ba9c4 100755 --- a/.ci/pack.sh +++ b/.ci/pack.sh @@ -37,7 +37,7 @@ function pack_artifacts() { if [ "$OS" = "windows" ]; then ARCHIVE_FULL_NAME="$ARCHIVE_NAME.zip" powershell Compress-Archive "$REV_NAME" "$ARCHIVE_FULL_NAME" - elif [ "$OS" = "android" ]; then + elif [ "$OS" = "android" ] || [ "$OS" = "macos" ]; then ARCHIVE_FULL_NAME="$ARCHIVE_NAME.zip" zip -r "$ARCHIVE_FULL_NAME" "$REV_NAME" else