diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 590a57c..7a2d6b1 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -22,6 +22,8 @@ platform :ios do if !build.nil? && !build.empty? increment_build_number(build_number: build.to_i) end + + match(type: "appstore", readonly: is_ci, keychain_name: "login.keychain", keychain_password: "bark") build_app(workspace: "Bark.xcworkspace", scheme: "Bark") diff --git a/fastlane/Matchfile b/fastlane/Matchfile new file mode 100644 index 0000000..e6619bf --- /dev/null +++ b/fastlane/Matchfile @@ -0,0 +1,13 @@ +git_url("git@github.com:Finb/match.git") + +storage_mode("git") + +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 + +# The docs are available on https://docs.fastlane.tools/actions/match