ci: don't use pure shell for Play Store upload

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-01-17 16:45:03 +01:00
parent b31bebdbd9
commit 23708f1487
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 2 additions and 1 deletions

View File

@ -109,7 +109,8 @@ def uploadToPlayStore(type = 'nightly') {
nix.shell( nix.shell(
"fastlane android ${type}", "fastlane android ${type}",
keep: ['FASTLANE_DISABLE_COLORS', 'APK_PATHS', 'GOOGLE_PLAY_JSON_KEY'], keep: ['FASTLANE_DISABLE_COLORS', 'APK_PATHS', 'GOOGLE_PLAY_JSON_KEY'],
attr: 'shells.fastlane' attr: 'shells.fastlane',
pure: false
) )
} }
} }