Skip to content

Commit

Permalink
collect debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinschumacher committed Dec 28, 2024
1 parent 5608ecf commit cf7c9e1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ jobs:
- name: Build App Bundle
run: flutter build appbundle

- name: Package debug symbols
run: |
cd build/app/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/
zip -r ./debug-symbols.zip *
#9 Upload Artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -65,6 +70,7 @@ jobs:
path: |
build/app/outputs/flutter-apk/app-release.apk
build/app/outputs/bundle/release/app-release.aab
build/app/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/debug-symbols.zip
#10 Extract Version
- name: Extract version from pubspec.yaml
Expand Down Expand Up @@ -97,4 +103,5 @@ jobs:
files: |
build/app/outputs/flutter-apk/app-release.apk
build/app/outputs/bundle/release/app-release.aab
build/app/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/debug-symbols.zip
LICENSE

0 comments on commit cf7c9e1

Please sign in to comment.