Skip to content

Commit 5fd9720

Browse files
committed
test-windows.yml: Try to fix caching, continued -- remove quotes
1 parent 63edff7 commit 5fd9720

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/test-windows.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3030
with:
3131
path: |
32-
"${{ github.workspace }}\vcpkgAssets"
33-
"${{ github.workspace }}\vcpkgBCache"
34-
"${{ github.workspace }}\vcpkgBin"
35-
"${{ github.workspace }}\vcpkgBuild"
32+
${{ github.workspace }}\vcpkgAssets
33+
${{ github.workspace }}\vcpkgBCache
34+
${{ github.workspace }}\vcpkgBin
35+
${{ github.workspace }}\vcpkgBuild
3636
key: vcpkgCache-${{ github.repository_owner }}-windows-latest-x64-windows-${{ hashFiles('.github/workflows/vcpkg.json') }}
3737

3838
- name: Create directories on cache miss
@@ -79,9 +79,9 @@ jobs:
7979
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
8080
with:
8181
path: |
82-
"${{ github.workspace }}\vcpkgAssets"
83-
"${{ github.workspace }}\vcpkgBCache"
84-
"${{ github.workspace }}\vcpkgBin"
85-
"${{ github.workspace }}\vcpkgBuild"
82+
${{ github.workspace }}\vcpkgAssets
83+
${{ github.workspace }}\vcpkgBCache
84+
${{ github.workspace }}\vcpkgBin
85+
${{ github.workspace }}\vcpkgBuild
8686
key: ${{ steps.cache-vcpkg-restore.outputs.cache-primary-key }}
8787
if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)