We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe1609e commit ad48d24Copy full SHA for ad48d24
1 file changed
.github/workflows/ci.yml
@@ -42,6 +42,7 @@
42
},
43
{
44
"uses": "actions/cache@v3",
45
+ "id": "nuget-cache",
46
"with": {
47
"path": "${{ env.NUGET_PACKAGES }}",
48
"key": "${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}",
@@ -50,6 +51,7 @@
50
51
52
53
"name": "Restore NuGet packages",
54
+ "if": "steps.nuget-cache.outputs.cache-hit != 'true'",
55
"run": "dotnet restore --locked-mode"
56
57
0 commit comments