passepartout-apple/fastlane/Fastfile

33 lines
839 B
Plaintext
Raw Normal View History

# 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"]
)
match(
platform: "macos",
type: "development"
)
match(
platform: "ios",
type: "development"
)
end