Skip to content

Commit ace199a

Browse files
committed
fix: update iOS export options to use APPLE_TEAM_ID environment variable
Signed-off-by: bradly0cjw <57744542+bradly0cjw@users.noreply.github.com>
1 parent ee349d3 commit ace199a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/CI.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,8 @@ jobs:
179179

180180
- name: Build iOS IPA (Signed)
181181
if: env.SHOULD_SIGN_IOS == 'true'
182+
env:
183+
APPLE_TEAM_ID: ${{ secrets.IOS_APPLE_TEAM_ID }}
182184
run: flutter build ipa --release --export-options-plist=ios/ExportOptions.plist
183185

184186
- name: Build iOS IPA (Unsigned)

ios/ExportOptions.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<string>app-store</string>
77

88
<key>teamID</key>
9-
<string>$(IOS_APPLE_TEAM_ID)</string>
9+
<string>$(APPLE_TEAM_ID)</string>
1010

1111
<key>provisioningProfiles</key>
1212
<dict>

0 commit comments

Comments
 (0)