Skip to content

Commit

Permalink
Use distinct cache keys
Browse files Browse the repository at this point in the history
  • Loading branch information
quoc-huynh-cosee committed Nov 3, 2023
1 parent b726ae7 commit a67828b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/native_image_cropper_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-android-${{ hashFiles('**/pubspec.lock') }}
- name: Install dependencies
run: flutter pub get

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-android-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/native_image_cropper_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-ios-${{ hashFiles('**/pubspec.lock') }}
- name: Install dependencies
run: flutter pub get

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-ios-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/native_image_cropper_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-macos-${{ hashFiles('**/pubspec.lock') }}
- name: Install dependencies
run: flutter pub get

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-macos-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-platform-interface-${{ hashFiles('**/pubspec.lock') }}
- name: Install dependencies
run: flutter pub get

Expand All @@ -48,7 +48,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-platform-interface-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/native_image_cropper_web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-web-${{ hashFiles('**/pubspec.lock') }}
- name: Install dependencies
run: flutter pub get

Expand All @@ -48,7 +48,7 @@ jobs:
with:
path: |
.dart_tool/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
key: ${{ runner.os }}-dependencies-web-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
Expand Down

0 comments on commit a67828b

Please sign in to comment.