From 0ac158eb4ada25271d5b97716de39902a496ae7d Mon Sep 17 00:00:00 2001 From: stopflock Date: Thu, 16 Oct 2025 12:21:12 -0500 Subject: [PATCH] Send to apple on successful tag build --- .github/workflows/workflow.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index a945fa5..9548163 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -238,6 +238,15 @@ jobs: path: Runner.ipa if-no-files-found: 'error' + - name: Upload to App Store Connect + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') + uses: apple-actions/upload-testflight-build@v1 + with: + app-path: Runner.ipa + issuer-id: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }} + api-key-id: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }} + api-private-key: ${{ secrets.APP_STORE_CONNECT_API_KEY_BASE64 }} + attach-to-release: name: Attach Assets to Release needs: [get-version, build-android-apk, build-android-aab, build-ios]