Skip to content

Commit

Permalink
chore: Testing if deploying works on Android. #342
Browse files Browse the repository at this point in the history
  • Loading branch information
LuchoTurtle committed Oct 23, 2023
1 parent cd41693 commit dc8d75a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/deploy_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"

0 comments on commit dc8d75a

Please sign in to comment.