Last active
September 27, 2023 07:32
-
-
Save kambala-decapitator/e298761e57d4031c65c4e39df5002ef6 to your computer and use it in GitHub Desktop.
fastlane: execute lanes from different platforms in a single lane
This file contains hidden or 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
# 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