Skip to content

Commit 63edff7

Browse files
committed
test-windows.yml: Try to fix caching, continued -- single backslashes rather than two in a row
1 parent c4b4dce commit 63edff7

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/test-windows.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ 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
3939
run: |
40-
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\\vcpkgAssets"
41-
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\\vcpkgBCache"
42-
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\\vcpkgBin"
43-
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\\vcpkgBuild"
40+
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\vcpkgAssets"
41+
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\vcpkgBCache"
42+
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\vcpkgBin"
43+
New-Item -Force -ItemType Directory -Path "${{ github.workspace }}\vcpkgBuild"
4444
shell: pwsh
4545
if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true'
4646

@@ -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)