diff --git a/.github/workflows/update_devices.yml b/.github/workflows/update_devices.yml index b0f7ff67..44dd185e 100644 --- a/.github/workflows/update_devices.yml +++ b/.github/workflows/update_devices.yml @@ -1,4 +1,4 @@ -name: Deploy Firebase Beta +name: Update Devices on: workflow_dispatch: diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0659af45..59579235 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -175,23 +175,24 @@ platform :ios do ) # resolve the provisioning profiles and certs from private repo - match(type: "appstore", + match(type: "adhoc", readonly: false, - app_identifier: "org.permanent.PermanentArchive", + app_identifier: "org.permanent.permanent.staging", git_url: "https://oauth2:#{ENV['FASTLANE_MATCH_TOKEN']}@github.com/PermanentOrg/permanent-ios-certs.git", - keychain_password: "" + force_for_new_devices: true, + verbose: true ) - match(type: "appstore", + match(type: "adhoc", readonly: false, - app_identifier: "org.permanent.PermanentArchive.PushExtension", + app_identifier: "org.permanent.permanent.staging.PushExtension", git_url: "https://oauth2:#{ENV['FASTLANE_MATCH_TOKEN']}@github.com/PermanentOrg/permanent-ios-certs.git", - keychain_password: "" + force_for_new_devices: true ) - match(type: "appstore", + match(type: "adhoc", readonly: false, - app_identifier: "org.permanent.PermanentArchive.ShareExtension", + app_identifier: "org.permanent.permanent.staging.ShareExtension", git_url: "https://oauth2:#{ENV['FASTLANE_MATCH_TOKEN']}@github.com/PermanentOrg/permanent-ios-certs.git", - keychain_password: "" + force_for_new_devices: true ) end