From 791761fd8f11f91c35dac81f7c49d6d8fc535d6f Mon Sep 17 00:00:00 2001 From: Anirudh Sevugan Date: Fri, 8 Aug 2025 16:26:39 -0500 Subject: [PATCH] Switch to APFS for DMGs --- .github/workflows/build-macos.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index f755d7a..d74e822 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -71,17 +71,16 @@ jobs: ln -s /Applications "$temp_dir/Applications" # Create the DMG from the temporary directory - hdiutil create -volname "$volume_name" -srcfolder "$temp_dir" -fs HFS+ -ov "$dmg_name" + hdiutil create -volname "$volume_name" -srcfolder "$temp_dir" -fs APFS -ov "$dmg_name" # Clean up the temporary directory rm -r "$temp_dir" } - + # --- Create DMG for each architecture --- create_dmg "dist/mac/SimpliPlay.app" "dist/SimpliPlay-x64-darwin.dmg" "SimpliPlay x64" create_dmg "dist/mac-arm64/SimpliPlay.app" "dist/SimpliPlay-arm64-darwin.dmg" "SimpliPlay arm64" create_dmg "dist/mac-universal/SimpliPlay.app" "dist/SimpliPlay-universal-darwin.dmg" "SimpliPlay Universal" - working-directory: simpliplay - name: Upload artifacts