We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7946c1 commit 00de2fcCopy full SHA for 00de2fc
.github/workflows/build.yml
@@ -21,6 +21,18 @@ jobs:
21
with:
22
channel: 'stable'
23
24
+ - name: Save the store key properties to android/key.properties
25
+ env:
26
+ ANDROID_STORE_KEY_PROPERTIES: ${{ secrets.ANDROID_STORE_KEY_PROPERTIES }}
27
+ run: |
28
+ echo $ANDROID_STORE_KEY_PROPERTIES > android/key.properties
29
+
30
+ - name: Decode the store key to android/GooglePlaystore.jks
31
32
+ GOOGLE_PLAYSTORE_JKS_BASE64: ${{ secrets.GOOGLE_PLAYSTORE_JKS_BASE64 }}
33
34
+ echo $GOOGLE_PLAYSTORE_JKS_BASE64 | base64 --decode > android/GooglePlaystore.jks
35
36
- run: flutter --version
37
- run: flutter pub get
38
- run: flutter build apk
0 commit comments