Skip to content

Commit 7310e8b

Browse files
committedJun 5, 2021
initial commit
0 parents  commit 7310e8b

File tree

167 files changed

+11487
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+11487
-0
lines changed
 

‎.firebaserc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "rtchat-47692"
4+
}
5+
}

‎.github/workflows/android.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Build & upload to Google Play Store
2+
3+
on:
4+
push:
5+
paths:
6+
- "android/**"
7+
- "assets/**"
8+
- "lib/**"
9+
branches:
10+
- main
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- run: echo $UPLOAD_KEYSTORE | base64 -d > android/app/upload-keystore.jks
18+
env:
19+
UPLOAD_KEYSTORE: ${{ secrets.UPLOAD_KEYSTORE }}
20+
- uses: actions/setup-java@v1
21+
with:
22+
java-version: "12.x"
23+
- uses: subosito/flutter-action@v1
24+
with:
25+
flutter-version: "2.2.1"
26+
- run: flutter pub get
27+
- run: flutter build appbundle --release
28+
env:
29+
STORE_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_PASSWORD }}
30+
KEY_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_PASSWORD }}
31+
KEY_ALIAS: upload
32+
STORE_FILE: upload-keystore.jks
33+
- name: Upload artifact to Google Play
34+
uses: r0adkll/upload-google-play@v1
35+
with:
36+
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}
37+
packageName: com.rtirl.chat
38+
releaseFiles: build/app/outputs/bundle/release/app-release.aab
39+
track: alpha
40+
mappingFile: build/app/outputs/mapping/release/mapping.txt

0 commit comments

Comments
 (0)