Skip to content

Commit fd82a56

Browse files
committed
Fix the NuGet packages cache on the Windows runner
1 parent aefe441 commit fd82a56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: 💾 Retrieve cached NuGet packages
3636
uses: actions/cache@v4
3737
with:
38-
path: ~/.nuget/packages
38+
path: ${{ env.NUGET_PACKAGES || '~/.nuget/packages' }}
3939
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
4040
restore-keys: |
4141
${{ runner.os }}-nuget-

0 commit comments

Comments
 (0)