File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,7 @@ deploy:
58
58
# deploy to google play
59
59
- provider : script
60
60
skip_cleanup : true
61
- script :
62
- - echo $GOOGLE_PLAY_ACCOUNT > gplay_api.json
63
- - bundle exec fastlane deploy_$BUILD_TYPE
61
+ script : bundle exec fastlane deploy_$BUILD_TYPE
64
62
on :
65
63
branch : master
66
64
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,14 +17,16 @@ platform :android do
17
17
lane :deploy_beta do
18
18
upload_to_play_store ( track : "beta" ,
19
19
package_name : "org.exarhteam.iitc_mobile" ,
20
- apk : "build/beta/IITC_Mobile-beta.apk" )
20
+ apk : "build/beta/IITC_Mobile-beta.apk" ,
21
+ json_key_data : ENV [ 'GOOGLE_PLAY_ACCOUNT' ] )
21
22
end
22
23
23
24
desc "Deploy of release to Google Play"
24
25
lane :deploy_release do
25
26
upload_to_play_store ( track : "release" ,
26
27
package_name : "org.exarhteam.iitc_mobile" ,
27
- apk : "build/release/IITC_Mobile-release.apk" )
28
+ apk : "build/release/IITC_Mobile-release.apk" ,
29
+ json_key_data : ENV [ 'GOOGLE_PLAY_ACCOUNT' ] )
28
30
end
29
31
end
30
32
You can’t perform that action at this time.
0 commit comments