From 0b1751296c393d771969a5c64ce529b91a9e827d Mon Sep 17 00:00:00 2001 From: problematicconsumer Date: Sun, 15 Oct 2023 16:06:31 +0330 Subject: [PATCH] Fix ci --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d63e8aee..578cd96f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ concurrency: env: CHANNEL: ${{ github.ref_type == 'tag' && endsWith(github.ref_name, 'dev') && 'dev' || github.ref_type != 'tag' && 'dev' || 'prod' }} - NDK_VERSION: '26.1.10909125' + NDK_VERSION: r26b jobs: build: @@ -80,12 +80,13 @@ jobs: - name: Setup NDK if: startsWith(matrix.platform,'android') - uses: nttld/setup-ndk@v1 + uses: nttld/setup-ndk@v1.4.1 id: setup-ndk with: ndk-version: ${{ env.NDK_VERSION }} add-to-path: true link-to-sdk: true + local-cache: true - name: Setup Flutter Distributor if: ${{ !startsWith(matrix.platform,'android') }}