-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Testing if deploying works on Android. #342
- Loading branch information
1 parent
cd41693
commit dc8d75a
Showing
1 changed file
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,8 +62,20 @@ jobs: | |
echo 'keyPassword=${{ secrets.KEYSTORE_KEY_PASSWORD }}' >> $KEYSTORE_PROPERTIES_PATH | ||
- name: 🤖📦 Create Android appbundle release | ||
- name: 📦 Create Android appbundle release | ||
run: | | ||
flutter build appbundle \ | ||
--obfuscate \ | ||
--split-debug-info=${{ github.workspace }}/debug_info | ||
--split-debug-info=${{ github.workspace }}/debug_info | ||
- name: 🚀 Upload Android Release to Play Store | ||
uses: r0adkll/[email protected] | ||
with: | ||
# MUST match the package name defined in `android/app/build.gradle` | ||
packageName: "com.dwyl.app" | ||
|
||
# Can be 'alpha'/'beta'/'internal'/'production' | ||
track: production | ||
|
||
releaseFiles: ${{ github.workspace }}/build/app/outputs/bundle/release/app-release.aab | ||
serviceAccountJsonPlainText: "${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_KEY_JSON }}" |