ci: remove useless cache

This commit is contained in:
Michael 2025-05-11 23:57:22 +03:00
parent d12f4470fd
commit 180cf8fdfb

View file

@ -32,23 +32,23 @@ jobs:
java-version: "21" java-version: "21"
distribution: "temurin" distribution: "temurin"
- name: Cache Android SDK # - name: Cache Android SDK
uses: actions/cache@v3 # uses: actions/cache@v3
with: # with:
path: | # path: |
~/android-sdk # ~/android-sdk
~/.android # ~/.android
key: ${{ runner.os }}-android-${{ hashFiles('android/build.gradle.kts') }} # key: ${{ runner.os }}-android-${{ hashFiles('android/build.gradle.kts') }}
- name: Setup Android SDK - name: Setup Android SDK
uses: https://github.com/android-actions/setup-android@v3 uses: https://github.com/android-actions/setup-android@v3
- name: Cache Flutter # - name: Cache Flutter
uses: actions/cache@v3 # uses: actions/cache@v3
with: # with:
path: | # path: |
./flutter/bin/cache # ./flutter/bin/cache
key: ${{ runner.os }}-flutter-${{ hashFiles('.gitmodules') }} # key: ${{ runner.os }}-flutter-${{ hashFiles('.gitmodules') }}
- name: Flutter install and check - name: Flutter install and check
run: ./flutter/bin/flutter doctor -v run: ./flutter/bin/flutter doctor -v
@ -83,7 +83,6 @@ jobs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: | path: |
./.pub-cache
./android/.gradle ./android/.gradle
~/.gradle ~/.gradle
key: ${{ runner.os }}-android-${{ hashFiles('android/') }} key: ${{ runner.os }}-android-${{ hashFiles('android/') }}