Skip to content

Commit

Permalink
Upload debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
anhappdev committed May 31, 2024
1 parent 76d6d1d commit 4ac0fb9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/android-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ jobs:
make flutter/android/release
gsutil cp flutter/build/app/outputs/bundle/release/app-release.aab $GCLOUD_BUCKET_PATH/app-release.aab
gsutil cp flutter/build/app/outputs/flutter-apk/app-release.apk $GCLOUD_BUCKET_PATH/app-release.apk
gsutil cp flutter/build/app/outputs/mapping/release/mapping.txt $GCLOUD_BUCKET_PATH/mapping.txt
zip -r /tmp/symbols.zip flutter/build/app/intermediates/merged_native_libs/release/out/lib
gsutil cp /tmp/symbols.zip $GCLOUD_BUCKET_PATH/symbols.zip
- name: Archive APK with TFLite backend
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -344,6 +347,8 @@ jobs:
- name: Download Android release app
run: |
gsutil cp $GCLOUD_BUCKET_PATH/app-release.aab /tmp/app-release.aab
gsutil cp $GCLOUD_BUCKET_PATH/mapping.txt /tmp/mapping.txt
gsutil cp $GCLOUD_BUCKET_PATH/symbols.zip /tmp/symbols.zip
- name: Upload Android release app to Google Play
uses: r0adkll/upload-google-play@v1
with:
Expand All @@ -353,3 +358,5 @@ jobs:
track: internal # "alpha", "beta", "internal" or "production"
status: draft
changesNotSentForReview: true
mappingFile: /tmp/mapping.txt
debugSymbols: /tmp/symbols.zip

0 comments on commit 4ac0fb9

Please sign in to comment.