Skip to content

Instantly share code, notes, and snippets.

@leonardomdornelas
Created July 10, 2023 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leonardomdornelas/d155e73ae579f93d64c7359a74b48527 to your computer and use it in GitHub Desktop.
Save leonardomdornelas/d155e73ae579f93d64c7359a74b48527 to your computer and use it in GitHub Desktop.
Lane :build_ipa
lane :build_ipa do
#Forcing Xcode stable version to prevent using beta
xcode_select("/Applications/Xcode.app")
# Build and archive the application
gym(
export_method: "app-store",
configuration: "Release",
scheme: scheme,
clean: true,
export_xcargs: "-allowProvisioningUpdates"
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment