update via transporter
Some checks are pending
Build & Deploy iOS to TestFlight / build-and-deploy (push) Waiting to run

This commit is contained in:
efrilm 2026-05-29 18:39:48 +07:00
parent c69a84569b
commit c03cfdfa80

View File

@ -119,9 +119,11 @@ jobs:
APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_ID: ${{ secrets.APPLE_ID }}
APP_SPECIFIC_PASSWORD: ${{ secrets.APP_SPECIFIC_PASSWORD }} APP_SPECIFIC_PASSWORD: ${{ secrets.APP_SPECIFIC_PASSWORD }}
run: | run: |
IPA_PATH=$(find build/ios/ipa -name "*.ipa" | head -1)
echo "Uploading: $IPA_PATH"
xcrun altool --upload-app \ xcrun altool --upload-app \
--type ios \ --type ios \
--file "build/ios/ipa/*.ipa" \ --file "$IPA_PATH" \
--username "$APPLE_ID" \ --username "$APPLE_ID" \
--password "$APP_SPECIFIC_PASSWORD" \ --password "$APP_SPECIFIC_PASSWORD" \
--verbose --verbose