23 lines
657 B
Ruby
23 lines
657 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(:ios)
|
|
lane :release do
|
|
app_store_connect_api_key(
|
|
key_id: ENV['FASTLANE_API_KEY_ID'],
|
|
issuer_id: ENV['FASTLANE_API_KEY_ISSUER_ID'],
|
|
key_filepath: ENV['FASTLANE_API_KEY_PATH']
|
|
)
|
|
deliver
|
|
end |