scratch-desktop/fastlane/Fastfile
2022-01-27 16:44:13 -08:00

29 lines
965 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
default_platform(:mac)
platform :mac do
desc "Use Fastlane Match to install development certificates"
lane :match_dev do
match(type: "development", platform: "macos", output_path: "build", readonly: is_ci)
end
desc "Use Fastlane Match to install distribution certificates"
lane :match_dist do
match(type: "appstore", platform: "macos", output_path: "build", readonly: is_ci)
match(type: "developer_id", platform: "macos", output_path: "build", readonly: is_ci, additional_cert_types: "developer_id_installer")
end
end