Skip to content

Commit

Permalink
Chore: Migrate to update_code_signing_settings (#4085)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolmello authored Apr 22, 2022
1 parent 0ed8cda commit 5c0a7ab
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,18 @@ platform :ios do
output_path: './'
)

update_project_provisioning(
xcodeproj: 'RocketChatRN.xcodeproj',
profile: "AppStore_chat.rocket.ios.NotificationService.mobileprovision",
target_filter: "NotificationService",
build_configuration: 'Release',
code_signing_identity: 'iPhone Distribution'
update_code_signing_settings(
profile_name: "match AppStore chat.rocket.ios.NotificationService",
build_configurations: "Release",
code_sign_identity: "iPhone Distribution",
targets: "NotificationService",
)

update_project_provisioning(
xcodeproj: 'RocketChatRN.xcodeproj',
profile: "AppStore_chat.rocket.ios.Rocket-Chat-ShareExtension.mobileprovision",
target_filter: "ShareRocketChatRN",
build_configuration: 'Release',
code_signing_identity: 'iPhone Distribution'
update_code_signing_settings(
profile_name: "match AppStore chat.rocket.ios.Rocket-Chat-ShareExtension",
build_configurations: "Release",
code_sign_identity: "iPhone Distribution",
targets: "ShareRocketChatRN",
)

gym(
Expand Down

0 comments on commit 5c0a7ab

Please sign in to comment.