Last active
August 29, 2019 08:11
-
-
Save PH9/2210b4e670e842344d6a343de46e881b to your computer and use it in GitHub Desktop.
Fastfile with .env
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc "build" | |
lane :build do |options| | |
build_ios_app( | |
configuration: ENV["BUILD_CONFIGURATION"], | |
export_options: { | |
method: ENV["EXPORT_METHOD"], | |
provisioningProfiles: { | |
ENV["APP_IDENTIFIER"] => ENV["APP_PROVISIONING_PROFILE"], | |
ENV["APP_NOTIFICATION_EXTENSION_ID"] => ENV["APP_NOTIFICATION_EXTENSION_PROVISIONING_PROFILE"] | |
} | |
} | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment