Distribute MacOS build as a zip archive

This commit is contained in:
OpenSauce04
2024-11-10 18:16:50 +00:00
parent 84fce39a2d
commit f34d1b1ea8
+1 -1
View File
@@ -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