Skip to content

Commit 97a38b6

Browse files
authored
Buildworkflow (#20)
* Create build_release.yml * Update
1 parent 8edcb6c commit 97a38b6

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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/

0 commit comments

Comments
 (0)