From 6eca97677edd6a4e43e9f5a2d136e8fabdb69b98 Mon Sep 17 00:00:00 2001 From: Fin Date: Wed, 23 Jun 2021 18:34:10 +0800 Subject: [PATCH] add Matchfile --- fastlane/Fastfile | 2 ++ fastlane/Matchfile | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 fastlane/Matchfile 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