Skip to content

Instantly share code, notes, and snippets.

@kambala-decapitator
Last active September 27, 2023 07:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kambala-decapitator/e298761e57d4031c65c4e39df5002ef6 to your computer and use it in GitHub Desktop.
Save kambala-decapitator/e298761e57d4031c65c4e39df5002ef6 to your computer and use it in GitHub Desktop.
fastlane: execute lanes from different platforms in a single lane
# https://github.com/fastlane/fastlane/issues/7676
desc "All App Store Connect"
lane :appStoreConnect do #|options|
self.runner.current_platform = :ios
appStoreConnect
self.runner.current_platform = :tvos
appStoreConnect
# the following executes before_all every time
# Fastlane::LaneManager.cruise_lane("ios", "appStoreConnect", options)
# Fastlane::LaneManager.cruise_lane("tvos", "appStoreConnect", options)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment