-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (44 loc) · 1.84 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Release to Google Play
on:
release:
types: [published] # Only triggers when a release is published
jobs:
build_and_upload_android_release:
name: Build and Upload Android Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- uses: subosito/flutter-action@v2
# Install dependencies
- name: Install Flutter dependencies
run: flutter pub get
# Prepare Keystore (decode and save it)
- name: Decode Keystore
run: |
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > ./android/app/key.jks
# Set up key.properties file
- name: Set up key.properties file
run: |
echo "storePassword=${{ secrets.ANDROID_KEYSTORE_PASSWORD }}" > $GITHUB_WORKSPACE/android/key.properties
echo "keyPassword=${{ secrets.ANDROID_KEY_PASSWORD }}" >> $GITHUB_WORKSPACE/android/key.properties
echo "keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}" >> $GITHUB_WORKSPACE/android/key.properties
echo "storeFile=key.jks" >> $GITHUB_WORKSPACE/android/key.properties
# Clean previous builds
- name: Clean previous build artifacts
run: flutter clean
# Build release Android App Bundle
- name: Build release AAB
run: flutter build appbundle --release
# Upload the Android App Bundle to Google Play
- name: Upload to Google Play
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: app.openshock.mobile
releaseFiles: build/app/outputs/bundle/release/app-release.aab
debugSymbols: build/app/intermediates/merged_native_libs/release/out/lib
track: production