Skip to content

Commit 4c7bb12

Browse files
authored
Merge pull request #53500 from Expensify/jack-addNotificationService
[CP Stag][No QA] Add NSE for HybridApp
2 parents e64ad29 + 1cbbc1c commit 4c7bb12

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/deploy.yml

+1
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,7 @@ jobs:
554554
run: |
555555
op document get --output ./OldApp_AppStore.mobileprovision OldApp_AppStore
556556
op document get --output ./OldApp_AppStore_Share_Extension.mobileprovision OldApp_AppStore_Share_Extension
557+
op document get --output ./OldApp_AppStore_Notification_Service.mobileprovision OldApp_AppStore_Notification_Service
557558
558559
- name: Decrypt AppStore profile
559560
run: cd ios && gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output NewApp_AppStore.mobileprovision NewApp_AppStore.mobileprovision.gpg

fastlane/Fastfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,10 @@ platform :ios do
389389
path: "./OldApp_AppStore_Share_Extension.mobileprovision"
390390
)
391391

392+
install_provisioning_profile(
393+
path: "./OldApp_AppStore_Notification_Service.mobileprovision"
394+
)
395+
392396
build_app(
393397
workspace: "../iOS/Expensify.xcworkspace",
394398
scheme: "Expensify",
@@ -398,7 +402,8 @@ platform :ios do
398402
manageAppVersionAndBuildNumber: false,
399403
provisioningProfiles: {
400404
"com.expensify.expensifylite" => "(OldApp) AppStore",
401-
"com.expensify.expensifylite.SmartScanExtension" => "(OldApp) AppStore: Share Extension"
405+
"com.expensify.expensifylite.SmartScanExtension" => "(OldApp) AppStore: Share Extension",
406+
"com.expensify.expensifylite.NotificationServiceExtension" => "(OldApp) AppStore: Notification Service",
402407
}
403408
}
404409
)

0 commit comments

Comments
 (0)