From e1f19e4c3d45fb54033e0d98689ccecfcac3d4a9 Mon Sep 17 00:00:00 2001 From: flaviuvsp Date: Wed, 29 Jan 2025 14:55:21 +0200 Subject: [PATCH] Update devices lane --- .github/workflows/update_devices.yml | 2 +- fastlane/Fastfile | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) 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