From c03cfdfa806c5423309b0b07e6eb02883ae16cc7 Mon Sep 17 00:00:00 2001 From: efrilm Date: Fri, 29 May 2026 18:39:48 +0700 Subject: [PATCH] update via transporter --- .github/workflows/ios.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 0d6d61b..cbe9c40 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -119,9 +119,11 @@ jobs: APPLE_ID: ${{ secrets.APPLE_ID }} APP_SPECIFIC_PASSWORD: ${{ secrets.APP_SPECIFIC_PASSWORD }} run: | + IPA_PATH=$(find build/ios/ipa -name "*.ipa" | head -1) + echo "Uploading: $IPA_PATH" xcrun altool --upload-app \ --type ios \ - --file "build/ios/ipa/*.ipa" \ + --file "$IPA_PATH" \ --username "$APPLE_ID" \ --password "$APP_SPECIFIC_PASSWORD" \ --verbose