2022-01-24 18:04:30 -05:00
|
|
|
# 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
|
|
|
|
|
2022-01-24 18:12:48 -05:00
|
|
|
default_platform(:mac)
|
2022-01-24 18:04:30 -05:00
|
|
|
|
2022-01-25 12:55:27 -05:00
|
|
|
platform :mac do
|
2022-01-26 20:42:28 -05:00
|
|
|
before_all do
|
|
|
|
setup_circle_ci
|
|
|
|
end
|
|
|
|
|
2022-01-25 12:55:27 -05:00
|
|
|
desc "Use Fastlane Match to install development certificates"
|
|
|
|
lane :match_dev do
|
2022-01-26 14:17:11 -05:00
|
|
|
match(type: "development", platform: "macos", output_path: "build", readonly: is_ci)
|
2022-01-25 12:55:27 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
desc "Use Fastlane Match to install distribution certificates"
|
|
|
|
lane :match_dist do
|
2022-01-26 14:17:11 -05:00
|
|
|
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")
|
2022-01-25 12:55:27 -05:00
|
|
|
end
|
|
|
|
end
|