From d32753de28982f72a699d80f2169eef14d9b4c1c Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Mon, 24 May 2021 21:36:35 +0300 Subject: [PATCH] Temporary hardcoding fastlane 2.183.2 on macOS (#3444) --- images/macos/provision/core/rubygem.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/images/macos/provision/core/rubygem.sh b/images/macos/provision/core/rubygem.sh index 48bb3bef3..d0a4dc289 100755 --- a/images/macos/provision/core/rubygem.sh +++ b/images/macos/provision/core/rubygem.sh @@ -27,7 +27,9 @@ gem install xcpretty echo Installing bundler... gem install bundler --force +# AppStoreRelease Azure DevOps has issues with Fastlane 2.184.0. Temporary hardcoding the version until the issue is fixed +# https://github.com/microsoft/app-store-vsts-extension/issues/244 echo Installing fastlane tools... -gem install fastlane +gem install fastlane -v 2.183.2 invoke_tests "RubyGem"