34 lines
869 B
Ruby
34 lines
869 B
Ruby
# This file contains the fastlane.tools configuration
|
|
# You can find the documentation at https://docs.fastlane.tools
|
|
#
|
|
# For a list of all available actions, check out
|
|
#
|
|
# https://docs.fastlane.tools/actions
|
|
#
|
|
# For a list of all available plugins, check out
|
|
#
|
|
# https://docs.fastlane.tools/plugins/available-plugins
|
|
#
|
|
|
|
# Uncomment the line if you want fastlane to automatically update itself
|
|
# update_fastlane
|
|
|
|
import("../Submodules/fastlane-ci-templates/fastlane/Fastfile.include")
|
|
|
|
desc "Preinstall development certificates"
|
|
lane :preinstall_development_certs do
|
|
create_keychain(
|
|
name: ENV["MATCH_KEYCHAIN_NAME"],
|
|
password: ENV["MATCH_KEYCHAIN_PASSWORD"]
|
|
)
|
|
app_store_connect_api_key
|
|
match(
|
|
platform: "macos",
|
|
type: "development"
|
|
)
|
|
match(
|
|
platform: "ios",
|
|
type: "development"
|
|
)
|
|
end
|