Last active
February 5, 2020 13:57
-
-
Save matteocollina/c9555e84cc37c55eece095b74b3a74be to your computer and use it in GitHub Desktop.
Beta lane - Fastlane (ad-hoc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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