Skip to content

Instantly share code, notes, and snippets.

@matteocollina
Last active February 5, 2020 13:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matteocollina/c9555e84cc37c55eece095b74b3a74be to your computer and use it in GitHub Desktop.
Save matteocollina/c9555e84cc37c55eece095b74b3a74be to your computer and use it in GitHub Desktop.
Beta lane - Fastlane (ad-hoc)
platform :ios do
desc "This is beta lane"
lane :beta do
get_provisioning_profile(
adhoc: true,
force: true
)
increment_build_number
gym(export_method:"ad-hoc",
scheme: "Golee",
workspace:"Golee.xcworkspace",
export_xcargs: "-allowProvisioningUpdates"
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment