File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Release App Bundle
2+
3+ on : workflow_dispatch
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - name : Decode Keystore
10+ id : decode_keystore
11+ uses : timheuer/base64-to-file@v1
12+ with :
13+ fileName : ' keystore/your_signing_keystore.jks'
14+ encodedString : ${{ secrets.KEYSTORE }}
15+ - uses : actions/checkout@v2
16+ - name : set up JDK 11.0.15
17+ uses : actions/setup-java@v1
18+ with :
19+ java-version : 11.0.15
20+ - name : Make gradlew executable
21+ run : chmod +x ./gradlew
22+ - name : Build GooglePlay app bundle
23+ run : ./gradlew app:bundlePlaystoreRelease
24+ env :
25+ SIGNING_KEY_ALIAS : ${{ secrets.AISDV1_KEY_ALIAS }}
26+ SIGNING_KEY_PASSWORD : ${{ secrets.AISDV1_KEY_PASSWORD }}
27+ SIGNING_STORE_PASSWORD : ${{ secrets.AISDV1_STORE_PASSWORD }}
28+ - name : Upload
29+ uses : actions/upload-artifact@v2
30+ with :
31+ name : Build Artifacts
32+ path : app/build/outputs/
You can’t perform that action at this time.
0 commit comments