fix(desktop): package macOS DMGs without Finder - #6407
Open
loganj wants to merge 2 commits into
Open
Conversation
loganj
force-pushed
the
other-darryl/headless-dmg
branch
2 times, most recently
from
August 20, 2026 17:32
e92480c to
09f9282
Compare
loganj
marked this pull request as ready for review
August 20, 2026 17:43
loganj
force-pushed
the
other-darryl/headless-dmg
branch
3 times, most recently
from
August 20, 2026 18:06
c9b131d to
938fd59
Compare
Build the macOS app bundle separately from DMG creation so headless release machines do not block in Tauri's Finder AppleScript. Keep Finder styling best-effort while always converting the writable image into an installable DMG. Co-authored-by: Other Brother Darryl <cee32d92756729ee0c097c5661b879c6199931cd25315c8cf398dcbf0f155cf1@buzz.block.builderlab.xyz> Signed-off-by: Logan Johnson <loganj@squareup.com>
Signed-off-by: Logan Johnson <loganj@squareup.com> Co-authored-by: Other Brother Darryl <cee32d92756729ee0c097c5661b879c6199931cd25315c8cf398dcbf0f155cf1@buzz.block.builderlab.xyz>
loganj
force-pushed
the
other-darryl/headless-dmg
branch
from
August 20, 2026 18:18
938fd59 to
e141209
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Other Brother Darryl
Summary
A successful desktop build could still fail while creating the macOS installer: Tauri's DMG packaging depended on interactive Finder behavior, so a headless build machine could spend a long time compiling and then leave developers with only a zipped
.appinstead of a testable installer.This PR makes
just desktop-release-buildproduce the actual installable Buzz DMG without requiring Finder. Headless macOS Blox build machines can now create the installer directly, moving packaging off a developer's Mac and making build delivery repeatable.Details
.appand packages it with the checked-inhdiutilscript. Finder styling is bounded and best-effort; image creation and conversion remain required.x64for Intel andaarch64for Apple silicon.Validation
just desktop-release-buildproducedBuzz_0.5.17_aarch64.dmg;hdiutil verifyand a read-only mount confirmed a usable UDIF containingBuzz.app, theApplicationssymlink, and bundle IDxyz.block.buzz.app.