Skip to content

Commit

Permalink
build: preserve mac app folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-andrew committed Jan 4, 2025
1 parent 5957755 commit 2929c35
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,13 @@ jobs:
- name: Build macOS App
run: flutter build macos --release

- name: Package macOS Build
run: |
cd build/macos/Build/Products/Release
zip -r "Android Sideloader.zip" "Android Sideloader.app/"
- name: Upload Build Files
uses: actions/upload-artifact@v4
with:
name: "Android Sideloader.app"
path: "build/macos/Build/Products/Release/Android Sideloader.app"
path: "build/macos/Build/Products/Release/Android Sideloader.zip"

0 comments on commit 2929c35

Please sign in to comment.