diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 27441ed..3deb8b9 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -9,7 +9,7 @@ env: NDK_VERSION: 25.2.9519653 FLUTTER_VERSION: '3.13.9' FLUTTER_CHANNEL: 'stable' - FRB_VERSION: 'v1.54.0' + FRB_VERSION: 'v1.82.3' jobs: @@ -156,23 +156,12 @@ jobs: flutter-version: ${{ env.FLUTTER_VERSION }} architecture: x64 - - name: Setup ffigen (flutter2) - if: steps.check_asset.outputs.skip_build != 'true' && startsWith(matrix.config.flutter_version, '2') - run: | - dart pub global activate ffigen 4.1.3 - - name: Install LLVM and Clang (Linux/Android) - if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm32' || matrix.config.target == 'android-arm64' || matrix.config.target == 'android-x86_64' || matrix.config.target == 'linux' ) && !startsWith(matrix.config.flutter_version, '2') + if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm32' || matrix.config.target == 'android-arm64' || matrix.config.target == 'android-x86_64' || matrix.config.target == 'linux' ) run: | sudo apt update sudo apt install -y libclang-dev - - name: Install LLVM and Clang (Linux/Android) - if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm32' || matrix.config.target == 'android-arm64' || matrix.config.target == 'android-x86_64' || matrix.config.target == 'linux' ) && startsWith(matrix.config.flutter_version, '2') - run: | - sudo apt update - sudo apt install -y libclang-13-dev - - name: Install libfuse2 (Linux) if: steps.check_asset.outputs.skip_build != 'true' && matrix.config.target == 'linux' run: |