Skip to content
Merged
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
15 changes: 0 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ jobs:
target: aarch64-apple-darwin
os: darwin
arch: aarch64
- platform: macos-14
target: x86_64-apple-darwin
os: darwin
arch: x86_64
- platform: ubuntu-22.04
target: x86_64-unknown-linux-gnu
os: linux
Expand Down Expand Up @@ -227,17 +223,6 @@ jobs:
echo "Updater artifact: $NEW_TAR_GZ"
fi

# Create zip from .app for direct download
APP_PATH=$(find "$BUNDLE_DIR" -maxdepth 1 -name "*.app" -type d 2>/dev/null | head -1 || true)
if [ -n "$APP_PATH" ]; then
APP_NAME_BASE=$(basename "$APP_PATH")
NEW_ZIP="${APP_NAME}-${VERSION}-darwin-${{ matrix.arch }}.zip"
cd "$(dirname "$APP_PATH")"
ditto -c -k --sequesterRsrc --keepParent "$APP_NAME_BASE" "$NEW_ZIP"
mv "$NEW_ZIP" "$GITHUB_WORKSPACE/release-assets/"
echo "App zip: $NEW_ZIP"
fi

# Copy DMG if exists
DMG=$(find "desktop/src-tauri/target/${{ matrix.target }}/release/bundle/dmg" -name "*.dmg" 2>/dev/null | head -1 || true)
if [ -n "$DMG" ]; then
Expand Down