fix(ci): skip desktop .apk in APK repo, not a valid Alpine package

The desktop .apk file from electron-builder is not an Alpine APK
package and causes apk index to fail with "v2 package format error".
This commit is contained in:
kolaente 2026-04-13 16:15:41 +02:00
parent a110642093
commit cff690fb5f
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 4 deletions

View File

@ -277,10 +277,7 @@ jobs:
done
;;
apk)
# Add arch suffix so the mage target's *-x86_64.apk glob matches
for f in *.apk; do
[ -f "$f" ] && cp "$f" "../incoming/${f%.apk}-x86_64.apk"
done
# Desktop .apk is not an Alpine package, skip
;;
esac