File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -208,20 +208,21 @@ jobs:
208208 if : env.SHOULD_SIGN_IOS == 'true'
209209 run : flutter build ipa --release --export-options-plist=ios/ExportOptions.plist
210210
211+ # IPA file detection.
212+ - name : Detect path for ipa file
213+ if : env.SHOULD_SIGN_IOS == 'true'
214+ run : |
215+ echo "IPA_PATH=$(find build/ios/ipa -type f -name '*.ipa')" >> $GITHUB_ENV
211216 - name : ' Upload app to TestFlight'
212217 uses : apple-actions/upload-testflight-build@v3
213218 with :
214- app-path : ' build/ios/ipa/*.ipa '
219+ app-path : ' ${{ env.IPA_PATH }} '
215220 issuer-id : ${{ secrets.IOS_APPSTORE_API_ISSUER_ID}}
216221 api-key-id : ${{ secrets.IOS_APPSTORE_API_KEY_ID }}
217222 api-private-key : ${{ secrets.IOS_APPSTORE_API_PRIVATE_KEY }}
218223
219224
220- # IPA file detection.
221- - name : Detect path for ipa file
222- if : env.SHOULD_SIGN_IOS == 'true'
223- run : |
224- echo "IPA_PATH=$(find build/ios/ipa -type f -name '*.ipa')" >> $GITHUB_ENV
225+
225226
226227 - name : Upload IPA Artifact
227228 if : env.SHOULD_SIGN_IOS == 'true'
You can’t perform that action at this time.
0 commit comments