We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed36966 commit d8feebeCopy full SHA for d8feebe
1 file changed
.github/workflows/github-cicd.yml
@@ -30,10 +30,11 @@ jobs:
30
uses: actions/cache@v4
31
with:
32
path: ~/.nuget/packages
33
- key: ${{ runner.os }}-nuget-${{ hashFiles('src/**/packages.lock.json','tests/**/packages.lock.json') }}
+ key: ${{ runner.os }}-nuget-${{ hashFiles('src/**/packages.lock.json') }}-${{ hashFiles('tests/**/packages.lock.json') }}
34
restore-keys: |
35
${{ runner.os }}-nuget-
36
- name: Install dependencies
37
+ if: steps.cache-nuget.outputs.cache-hit != 'true'
38
run: dotnet restore --locked-mode
39
- name: Build
40
run: dotnet build --configuration Release --no-restore
0 commit comments