File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -113,9 +113,8 @@ jobs:
113113 # The '|| true' prevents the workflow from failing if a specific file type doesn't exist
114114 find artifacts -type f \( -name "*.deb" -o -name "*.AppImage" -o -name "*.msi" -o -name "*.dmg" \) -exec cp {} release-assets/ \; || true
115115
116- # For macOS, we also zip the .app bundle for easier distribution
117- if [ -d "artifacts/Tauri Build Artifacts (macos-latest)/app" ]; then
118- cd artifacts/Tauri\ Build\ Artifacts\ \(macos-latest\)/app
116+ if [ -d "artifacts/Tauri Build Artifacts (macos-latest)/src-tauri/target/release/bundle/macos" ]; then
117+ cd "artifacts/Tauri Build Artifacts (macos-latest)/src-tauri/target/release/bundle/macos"
119118 for app in *.app; do
120119 zip -r "../../../release-assets/${app%.app}.zip" "$app"
121120 done
You can’t perform that action at this time.
0 commit comments