Skip to content

Commit

Permalink
Merge pull request #738 from kubo39/fix-dub
Browse files Browse the repository at this point in the history
[D] Fix: should use dub.selections.json for cache
  • Loading branch information
Vipul authored and GitHub committed May 11, 2022
2 parents a34051a + 5074380 commit 9c784e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ steps:
- uses: actions/cache@v3
with:
path: ~/.dub
key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.json') }}
key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.selections.json') }}
restore-keys: |
${{ runner.os }}-dub-
```
Expand All @@ -101,7 +101,7 @@ steps:
- uses: actions/cache@v3
with:
path: ~\AppData\Local\dub
key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.json') }}
key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.selections.json') }}
restore-keys: |
${{ runner.os }}-dub-
```
Expand Down

0 comments on commit 9c784e2

Please sign in to comment.