diff --git a/.github/workflows/android.yaml b/.github/workflows/android.yaml index 993d931..6b740f6 100644 --- a/.github/workflows/android.yaml +++ b/.github/workflows/android.yaml @@ -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 diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index 3b2866c..9ff195e 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -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