From 4745c157785115d731294ff11df4b8b6d33551df Mon Sep 17 00:00:00 2001 From: Niklas Eicker Date: Wed, 26 Jul 2023 09:11:32 +0200 Subject: [PATCH] Fix ipa name --- .github/workflows/release-ios-testflight.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-ios-testflight.yaml b/.github/workflows/release-ios-testflight.yaml index c5b5f52..b78bad7 100644 --- a/.github/workflows/release-ios-testflight.yaml +++ b/.github/workflows/release-ios-testflight.yaml @@ -90,14 +90,11 @@ jobs: API_KEY_BASE64: ${{ secrets.APPSTORE_API_PRIVATE_KEY }} run: | mkdir -p ~/private_keys - ls ~/private_keys echo -n "$API_KEY_BASE64" | base64 --decode --output ~/private_keys/AuthKey_${{ secrets.APPSTORE_API_KEY_ID }}.p8 - echo "after saving:" - ls ~/private_keys - name: Upload to testflight run: | - xcrun altool --validate-app -f ${{ runner.temp }}/export/Production.ipa -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} - xcrun altool --upload-app -f ${{ runner.temp }}/export/Production.ipa -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} + xcrun altool --validate-app -f ${{ runner.temp }}/export/mobile.ipa -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} + xcrun altool --upload-app -f ${{ runner.temp }}/export/mobile.ipa -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }} - name: Upload release uses: svenstaro/upload-release-action@v2 with: