Skip to content

Instantly share code, notes, and snippets.

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