Skip to content

Commit

Permalink
github: fix missing cache hash
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Jan 13, 2024
1 parent cd4b1ab commit 0bea04e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
with:
path: |
build
key: ${{ runner.OS }}-perfect-freehand-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }}
key: ${{ runner.OS }}-perfect-freehand-${{ hashFiles('pubspec.lock', '**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }}
restore-keys: |
${{ runner.OS }}-perfect-freehand-
${{ runner.OS }}-perfect-freehand-${{ hashFiles('pubspec.lock', '**/pubspec.lock') }}-
- name: Install Flutter
uses: subosito/flutter-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
with:
path: |
build
key: ${{ runner.OS }}-perfect-freehand-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }}
key: ${{ runner.OS }}-perfect-freehand-${{ hashFiles('pubspec.lock', '**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }}
restore-keys: |
${{ runner.OS }}-perfect-freehand-
${{ runner.OS }}-perfect-freehand-${{ hashFiles('pubspec.lock', '**/pubspec.lock') }}-
- name: Install Flutter
uses: subosito/flutter-action@v2
Expand Down

0 comments on commit 0bea04e

Please sign in to comment.