Skip to content

Instantly share code, notes, and snippets.

@otlaitil
Last active February 24, 2017 13:08
Show Gist options
  • Select an option

  • Save otlaitil/1937c1c3a25b94ce580e25d0829552cb to your computer and use it in GitHub Desktop.

Select an option

Save otlaitil/1937c1c3a25b94ce580e25d0829552cb to your computer and use it in GitHub Desktop.
Fastlane ios beta -lane with `react-native-config` & testflight specific .env file
platform :ios do
lane :beta do
sh "echo '.env.testflight' > /tmp/envfile"
match(type: 'appstore')
increment_build_number(
xcodeproj: "./ios/myproject.xcodeproj"
)
gym(
scheme: "myproject",
project: "./ios/myproject.xcodeproj"
)
testflight
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment