We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f6156c commit d0f76f1Copy full SHA for d0f76f1
.github/workflows/build.yml
@@ -22,14 +22,10 @@ jobs:
22
23
- uses: Swatinem/rust-cache@v2
24
25
- - name: Get yarn cache directory path
26
- id: yarn-cache-dir-path
27
- run: echo "::set-output name=dir::$(yarn cache dir)"
28
-
29
- uses: actions/cache@v5
30
id: yarn-cache
31
with:
32
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
+ path: .yarn/cache
33
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
34
restore-keys: |
35
${{ runner.os }}-yarn-
0 commit comments