Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Created December 2, 2020 08:17
Show Gist options
  • Select an option

  • Save Zfinix/17c3c22dfd3047252542591e67cec062 to your computer and use it in GitHub Desktop.

Select an option

Save Zfinix/17c3c22dfd3047252542591e67cec062 to your computer and use it in GitHub Desktop.
# place at ios/fastlane/Fastfile
desc "Deploy a new build to Testflight"
lane :beta do
Dir.chdir "../.." do
sh("flutter", "packages", "get")
sh("flutter", "clean")
sh("flutter", "build", "ios", "--release", "--no-codesign")
end
xcodebuild(
scheme: "Runner",
workspace: "Runner.xcworkspace"
)
#upload_to_testflight
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment