Skip to content

Commit 7ade592

Browse files
committed
chore: regenerate plugin registrant files for consistency across platforms
Signed-off-by: bradly0cjw <57744542+bradly0cjw@users.noreply.github.com>
1 parent 9977f48 commit 7ade592

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/CI.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)