Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,12 @@ jobs:
mkdir -p dist/artifacts
ZIP="dist/artifacts/AIUsageBar-${GITHUB_REF_NAME}.zip"
ditto -c -k --keepParent dist/AIUsageBar.app "$ZIP"
hdiutil create -volname "AI Usage Bar" -srcfolder dist/AIUsageBar.app \
# Stage the .app beside an /Applications symlink so the mounted DMG shows
# the familiar drag-to-Applications install window.
STAGE="$RUNNER_TEMP/dmg"; rm -rf "$STAGE"; mkdir -p "$STAGE"
cp -R dist/AIUsageBar.app "$STAGE/"
ln -s /Applications "$STAGE/Applications"
hdiutil create -volname "AI Usage Bar" -srcfolder "$STAGE" \
-ov -format UDZO "dist/artifacts/AIUsageBar-${GITHUB_REF_NAME}.dmg"
echo "SHA256=$(shasum -a 256 "$ZIP" | cut -d' ' -f1)" >> "$GITHUB_ENV"

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ as you cut a tag.

## [Unreleased]

### Changed
- The release `.dmg` now includes an `/Applications` symlink, so mounting it shows the
standard drag-to-Applications install window instead of a bare `.app`.

## [0.1.1] - 2026-07-13

### Fixed
Expand Down
Loading