Commit 9506bab 1 parent 6c602c6 commit 9506bab Copy full SHA for 9506bab
File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 83
83
with :
84
84
bundler-cache : true
85
85
86
- - name : Decrypt keystore and json key
87
- run : |
88
- cd android/app
89
- gpg --batch --yes --decrypt --passphrase="${{ secrets.LARGE_SECRET_PASSPHRASE }}" --output my-upload-key.keystore my-upload-key.keystore.gpg
90
- gpg --batch --yes --decrypt --passphrase="${{ secrets.LARGE_SECRET_PASSPHRASE }}" --output android-fastlane-json-key.json android-fastlane-json-key.json.gpg
86
+ - name : Decrypt keystore to sign the APK/AAB
87
+ run : gpg --batch --yes --decrypt --passphrase="${{ secrets.LARGE_SECRET_PASSPHRASE }}" --output my-upload-key.keystore my-upload-key.keystore.gpg
88
+ working-directory : android/app
91
89
92
90
- name : Get package version
93
91
id : getPackageVersion
Original file line number Diff line number Diff line change @@ -102,6 +102,10 @@ jobs:
102
102
- name : Log downloaded artifact paths
103
103
run : ls -R /tmp/artifacts
104
104
105
+ - name : Decrypt json w/ Google Play credentials
106
+ run : gpg --batch --yes --decrypt --passphrase="${{ secrets.LARGE_SECRET_PASSPHRASE }}" --output android-fastlane-json-key.json android-fastlane-json-key.json.gpg
107
+ working-directory : android/app
108
+
105
109
- name : Upload Android app to Google Play
106
110
run : bundle exec fastlane android upload_google_play_internal
107
111
env :
You can’t perform that action at this time.
0 commit comments