diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index b9513cd8..9b32e975 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -36,8 +36,7 @@ platform :ios do desc "This will also make sure the profile is up to date" lane :beta do match( - type: "appstore", - git_url: "git@github.com:RocketChat/Rocket.Chat.ReactNative.FastLane.git" + type: "appstore" ) # more information: https://codesigning.guide pem() gym(scheme: "RocketChatRN") # Build your app - more options available @@ -52,8 +51,7 @@ platform :ios do # match(type: "appstore") # snapshot match( - type: "appstore", - git_url: "git@github.com:RocketChat/Rocket.Chat.ReactNative.FastLane.git" + type: "appstore" ) # more information: https://codesigning.guide pem() gym(scheme: "RocketChatRN") # Build your app - more options available diff --git a/ios/fastlane/Matchfile b/ios/fastlane/Matchfile new file mode 100644 index 00000000..9826f288 --- /dev/null +++ b/ios/fastlane/Matchfile @@ -0,0 +1,9 @@ +git_url("https://github.com/RocketChat/Rocket.Chat.Cordova.Fastlane") + +type("development") # The default type, can be: appstore, adhoc, enterprise or development + +# app_identifier(["tools.fastlane.app", "tools.fastlane.app2"]) +# username("user@fastlane.tools") # Your Apple Developer Portal username + +# For all available options run `fastlane match --help` +# Remove the # in the beginning of the line to enable the other options