Skip AppImage and RPM builds to avoid slow 360MB+ compression
Some checks failed
Build Windows / Build (Windows) (push) Has been cancelled
Build Linux / Build (Linux) (push) Has been cancelled
Build macOS / Build (macOS) (push) Has been cancelled

AppImage bundler compresses the entire sidecar.zip into squashfs,
causing builds to hang/timeout. Limit targets to deb (Linux),
nsis+msi (Windows), and dmg (macOS).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude
2026-03-21 11:28:55 -07:00
parent b99613f452
commit 2d0d4cfc50
2 changed files with 2 additions and 5 deletions

View File

@@ -103,7 +103,7 @@ jobs:
exit 1
fi
find src-tauri/target/release/bundle -type f \( -name "*.deb" -o -name "*.AppImage" \) | while IFS= read -r file; do
find src-tauri/target/release/bundle -type f -name "*.deb" | while IFS= read -r file; do
filename=$(basename "$file")
encoded_name=$(echo "$filename" | sed 's/ /%20/g')
echo "Uploading ${filename} ($(du -h "$file" | cut -f1))..."

View File

@@ -31,7 +31,7 @@
},
"bundle": {
"active": true,
"targets": "all",
"targets": ["deb", "nsis", "msi", "dmg"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
@@ -48,9 +48,6 @@
"linux": {
"deb": {
"depends": []
},
"appimage": {
"bundleMediaFramework": true
}
},
"windows": {