Skip to content

Commit

Permalink
fix: ios/android build
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 committed Oct 17, 2024
1 parent b2f65cd commit dfa4d75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ jobs:
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
cargo make --profile production-android appflowy-core-dev-android &
cargo make --profile production-android code_generation &
wait
cargo make --profile production-android appflowy-core-dev-android
cargo make --profile production-android code_generation
cd appflowy_flutter
if [ ${{github.event.inputs.build_type}} = "apk" ]; then
flutter build apk --build-name ${{ github.event.inputs.build_name }} --build-number ${{ github.event.inputs.build_number }} --split-debug-info=./debug_info --obfuscate
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ jobs:
- name: Build AppFlowy
working-directory: frontend
run: |
cargo make --profile production-ios-arm64 appflowy-core-dev-ios &
cargo make --profile production-ios-arm64 code_generation &
wait
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=./debug_info --obfuscate
Expand Down

0 comments on commit dfa4d75

Please sign in to comment.