Skip to content

Instantly share code, notes, and snippets.

@matteocollina
Last active February 5, 2020 13:57
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