From cff690fb5f56d942d3d26caa21d05b50697dc7f9 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 13 Apr 2026 16:15:41 +0200 Subject: [PATCH] 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". --- .github/workflows/release.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 17a05f409..e83db7e57 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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