Last active
August 29, 2019 08:10
-
-
Save PH9/2cfaf322f244ac9ef4d57ef298d2965c to your computer and use it in GitHub Desktop.
Fastfile with out .env
This file contains hidden or 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 for Debug" | |
lane :build_debug do |options| | |
build_ios_app( | |
configuration: "Debug", | |
export_options: { | |
method: "development", | |
provisioningProfiles: { | |
"com.main.app" => "match Development com.main.app", | |
"com.main.app.extension" => "match Development com.main.app.extension" | |
} | |
} | |
) | |
end | |
desc "build for Release" | |
lane :build_release do |options| | |
build_ios_app( | |
configuration: "Release", | |
export_options: { | |
method: "app-store", | |
provisioningProfiles: { | |
"com.main.app" => "match Development com.main.app", | |
"com.main.app.extension" => "match Development com.main.app.extension" | |
} | |
} | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment