Skip to content

Commit 33a046c

Browse files
AndrewGableOSBotify
authored andcommitted
Merge pull request #53500 from Expensify/jack-addNotificationService
[CP Stag][No QA] Add NSE for HybridApp (cherry picked from commit 4c7bb12) (CP triggered by puneetlath)
1 parent 9951ff8 commit 33a046c

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
@@ -503,6 +503,7 @@ jobs:
503503
run: |
504504
op document get --output ./OldApp_AppStore.mobileprovision OldApp_AppStore
505505
op document get --output ./OldApp_AppStore_Share_Extension.mobileprovision OldApp_AppStore_Share_Extension
506+
op document get --output ./OldApp_AppStore_Notification_Service.mobileprovision OldApp_AppStore_Notification_Service
506507
507508
- name: Decrypt AppStore profile
508509
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)