diff --git a/.github/workflows/build-web.yml b/.github/workflows/build-web.yml index 85d57e0..4eacb24 100644 --- a/.github/workflows/build-web.yml +++ b/.github/workflows/build-web.yml @@ -30,7 +30,12 @@ jobs: uses: subosito/flutter-action@v2 with: channel: stable - flutter-version: 3.24.0 + cache: true + # optional parameters follow + cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache + cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path + pub-cache-key: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache of dart pub get dependencies + pub-cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path - run: flutter --version - run: flutter pub get # - run: flutter test