We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81c2953 commit c63df47Copy full SHA for c63df47
.github/workflows/dotnet-core.yml
@@ -33,7 +33,7 @@ jobs:
33
id: cache
34
with:
35
path: ~/.nuget/packages
36
- key: ${{ runner.os }}-nuget-breaker2-${{ hashFiles('**/packages.lock.json') }}
+ key: ${{ runner.os }}-nuget-breaker3-${{ hashFiles('**/packages.lock.json') }}
37
38
- uses: nowsprinting/check-version-format-action@v3
39
id: version
@@ -70,7 +70,7 @@ jobs:
70
run: |
71
dotnet clean --configuration Release
72
dotnet nuget locals all --clear
73
- if: steps.cache.outputs.cache-hit == 'false' || github.event_name == 'release'
+ if: steps.cache.outputs.cache-hit != 'true' || github.event_name == 'release'
74
75
- name: Restore packages
76
run: dotnet restore
0 commit comments