Skip to content

Commit 60c801c

Browse files
authored
Merge pull request #56684 from Expensify/georgia-fastfile
[Native Share Provisioning] Add ADHOC share extension profile to fastfile / build script
2 parents 07cefb6 + fb7899b commit 60c801c

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ jobs:
378378
run: |
379379
op read "op://${{ vars.OP_VAULT }}/NewApp_AppStore/NewApp_AppStore.mobileprovision" --force --out-file ./NewApp_AppStore.mobileprovision
380380
op read "op://${{ vars.OP_VAULT }}/NewApp_AppStore_Notification_Service/NewApp_AppStore_Notification_Service.mobileprovision" --force --out-file ./NewApp_AppStore_Notification_Service.mobileprovision
381+
op read "op://${{ vars.OP_VAULT }}/NewApp_AppStore_Share_Extension/NewApp_AppStore_Share_Extension.mobileprovision" --force --out-file ./NewApp_AppStore_Share_Extension.mobileprovision
381382
op read "op://${{ vars.OP_VAULT }}/New Expensify Distribution Certificate/Certificates.p12" --force --out-file ./Certificates.p12
382383
op read "op://${{ vars.OP_VAULT }}/ios-fastlane-json-key.json/ios-fastlane-json-key.json" --force --out-file ./ios-fastlane-json-key.json
383384

.github/workflows/testBuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
run: |
187187
op read "op://${{ vars.OP_VAULT }}/NewApp_AdHoc/NewApp_AdHoc.mobileprovision" --force --out-file ./NewApp_AdHoc.mobileprovision
188188
op read "op://${{ vars.OP_VAULT }}/NewApp_AdHoc_Notification_Service/NewApp_AdHoc_Notification_Service.mobileprovision" --force --out-file ./NewApp_AdHoc_Notification_Service.mobileprovision
189-
op read "op://${{ vars.OP_VAULT }}/NewApp_AdHoc_Share_Extension.mobileprovision/NewApp_AdHoc_Share_Extension.mobileprovision" --force --out-file ./NewApp_AdHoc_Share_Extension.mobileprovision
189+
op read "op://${{ vars.OP_VAULT }}/NewApp_AdHoc_Share_Extension/NewApp_AdHoc_Share_Extension.mobileprovision" --force --out-file ./NewApp_AdHoc_Share_Extension.mobileprovision
190190
op read "op://${{ vars.OP_VAULT }}/New Expensify Distribution Certificate/Certificates.p12" --force --out-file ./Certificates.p12
191191
192192
- name: Configure AWS Credentials

fastlane/Fastfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,10 @@ platform :ios do
353353
path: "./NewApp_AppStore_Notification_Service.mobileprovision"
354354
)
355355

356+
install_provisioning_profile(
357+
path: "./NewApp_AppStore_Share_Extension.mobileprovision"
358+
)
359+
356360
build_app(
357361
workspace: "./ios/NewExpensify.xcworkspace",
358362
scheme: "New Expensify",
@@ -361,6 +365,7 @@ platform :ios do
361365
provisioningProfiles: {
362366
"com.chat.expensify.chat" => "(NewApp) AppStore",
363367
"com.chat.expensify.chat.NotificationServiceExtension" => "(NewApp) AppStore: Notification Service",
368+
"com.chat.expensify.chat.ShareViewController" => "(NewApp) AppStore: Share Extension",
364369
},
365370
manageAppVersionAndBuildNumber: false
366371
}
@@ -485,6 +490,10 @@ platform :ios do
485490
path: "./NewApp_AdHoc_Notification_Service.mobileprovision"
486491
)
487492

493+
install_provisioning_profile(
494+
path: "./NewApp_AdHoc_Share_Extension.mobileprovision"
495+
)
496+
488497
build_app(
489498
workspace: "./ios/NewExpensify.xcworkspace",
490499
skip_profile_detection: true,
@@ -495,6 +504,7 @@ platform :ios do
495504
provisioningProfiles: {
496505
"com.expensify.chat.adhoc" => "(NewApp) AdHoc",
497506
"com.expensify.chat.adhoc.NotificationServiceExtension" => "(NewApp) AdHoc: Notification Service",
507+
"com.expensify.chat.adhoc.ShareViewController" => "(NewApp) AdHoc: Share Extension",
498508
},
499509
manageAppVersionAndBuildNumber: false
500510
}

0 commit comments

Comments
 (0)