From 94e3c25b3731e443dd6083a096de46cbc1157906 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 18 Jul 2026 18:54:34 +0200 Subject: [PATCH] Stop attaching the TestFlight pkg to GitHub releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The macOS pkg is App Store-signed (Sparkle stripped, not notarized) and only exists for the TestFlight upload — installing it directly produces an app that will not launch. Users should get the dmg or zip. --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 48db1a54..0be00ba2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -237,7 +237,9 @@ jobs: fi - uses: ncipollo/release-action@v1 with: - artifacts: artifacts/**/*.ipa,artifacts/**/*.zip,artifacts/**/*.pkg,artifacts/**/*.dmg + # No .pkg here on purpose: the mac TestFlight pkg is App Store-signed + # (no Sparkle, not notarized) and would not run if installed directly. + artifacts: artifacts/**/*.ipa,artifacts/**/*.zip,artifacts/**/*.dmg commit: ${{ github.ref_name }} tag: ${{ steps.compute_tag.outputs.tag }} prerelease: ${{ steps.compute_tag.outputs.prerelease }}