File tree Expand file tree Collapse file tree 3 files changed +21
-13
lines changed
Expand file tree Collapse file tree 3 files changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,10 @@ jobs:
2323 restore-keys : |
2424 ${{ runner.os }}-gradle-
2525
26- - name : Cache Android SDK
27- uses : actions/cache@v3
28- with :
29- path : |
30- /usr/local/lib/android/sdk/platform-tools
31- /usr/local/lib/android/sdk/platforms
32- /usr/local/lib/android/sdk/build-tools
33- /usr/local/lib/android/sdk/licenses
34- key : ${{ runner.os }}-android-sdk-${{ hashFiles('app/android/build.gradle') }}
35- restore-keys : |
36- ${{ runner.os }}-android-sdk-
37-
3826 - name : Set up Flutter
3927 uses : subosito/flutter-action@v2
4028 with :
41- flutter-version : " 3.22.2 "
29+ flutter-version : " 3.24.5 "
4230 channel : " stable"
4331 cache : true
4432
Original file line number Diff line number Diff line change 2020 with :
2121 path : " app"
2222
23+ - name : Cache pub dependencies
24+ uses : actions/cache@v3
25+ with :
26+ path : |
27+ ${{ env.PUB_CACHE }}
28+ app/.dart_tool
29+ key : ${{ runner.os }}-pub-${{ hashFiles('app/**/pubspec.lock') }}
30+ restore-keys : |
31+ ${{ runner.os }}-pub-
32+
2333 - name : Install required build tools for linux
2434 run : |
2535 sudo apt-get update -y
Original file line number Diff line number Diff line change 2020 with :
2121 path : " app"
2222
23+ - name : Cache pub dependencies
24+ uses : actions/cache@v3
25+ with :
26+ path : |
27+ ${{ env.PUB_CACHE }}
28+ app/.dart_tool
29+ key : ${{ runner.os }}-pub-${{ hashFiles('app/**/pubspec.lock') }}
30+ restore-keys : |
31+ ${{ runner.os }}-pub-
32+
2333 - uses : actions/checkout@v4
2434 with :
2535 repository : " hmziqrs/keys-n-stuff"
You can’t perform that action at this time.
0 commit comments