Skip to content

Instantly share code, notes, and snippets.

@PH9
Last active August 29, 2019 08:11
Show Gist options
  • Save PH9/2210b4e670e842344d6a343de46e881b to your computer and use it in GitHub Desktop.
Save PH9/2210b4e670e842344d6a343de46e881b to your computer and use it in GitHub Desktop.
Fastfile with .env
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