temporarily disable key caching
OmarHatem committed
Nov 10, 2024 at 01:16 UTC
89525b189732973b7e8b32f5be5157a96d0cdab1
1 file changed
+9
-9
.github/workflows/pr_test_build_android.yml
+9
-9
@@ -115,15 +115,15 @@ jobs:
115
cd /opt/android/cake_wallet/scripts/android/
116
./build_mwebd.sh --dont-install
117
118
- - name: Cache Keystore
119
- id: cache-keystore
120
- uses: actions/cache@v3
121
- with:
122
- path: /opt/android/cake_wallet/android/app/key.jks
123
- key: $STORE_PASS
124
-
125
- - if: ${{ steps.cache-keystore.outputs.cache-hit != 'true' }}
126
- name: Generate KeyStore
118
+# - name: Cache Keystore
119
+# id: cache-keystore
120
+# uses: actions/cache@v3
121
+# with:
122
+# path: /opt/android/cake_wallet/android/app/key.jks
123
+# key: $STORE_PASS
124
+#
125
+# - if: ${{ steps.cache-keystore.outputs.cache-hit != 'true' }}
126
+ - name: Generate KeyStore
127
run: |
128
cd /opt/android/cake_wallet/android/app
129
keytool -genkey -v -keystore key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias testKey -noprompt -dname "CN=CakeWallet, OU=CakeWallet, O=CakeWallet, L=Florida, S=America, C=USA" -storepass $STORE_PASS -keypass $KEY_PASS