Skip to content

Commit

Permalink
chore: export debug symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 committed Aug 27, 2024
1 parent cf2aa59 commit b46f1a7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,20 @@ jobs:
cargo make --profile production-ios-arm64 appflowy-core-dev-ios
cargo make --profile production-ios-arm64 code_generation
cd appflowy_flutter
flutter build ipa --build-name ${{ github.event.inputs.build_name }} --build-number ${{ github.event.inputs.build_number }} --split-debug-info=./ --obfuscate
flutter build ipa --build-name ${{ github.event.inputs.build_name }} --build-number ${{ github.event.inputs.build_number }} --split-debug-info=./debug_info --obfuscate
- name: Upload ipa
uses: actions/upload-artifact@v2
with:
name: AppFlowy.xcarchive
path: frontend/appflowy_flutter/build/ios/archive/Runner.xcarchive

- name: Upload debug symbols
uses: actions/upload-artifact@v2
with:
name: debug-symbols
path: frontend/appflowy_flutter/debug_info

notify-failure:
runs-on: ubuntu-latest
needs: build
Expand Down

0 comments on commit b46f1a7

Please sign in to comment.