We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f5e3d commit 2bb9c8cCopy full SHA for 2bb9c8c
.github/workflows/build.yml
@@ -47,14 +47,16 @@ jobs:
47
with:
48
path: |
49
Intersect*/bin/Release/**/Intersect*
50
- key: ${{ runner.os }}-nuget-${{ hashFiles('Intersect.*/*.csproj') }}
+ key: ${{ runner.os }}-nuget-${{ hashFiles('Intersect.*/**/*.cs') }}
51
52
- name: Cache NuGet dependencies
53
uses: actions/cache@v3.2.6
54
id: cache
55
if: steps.cache-binaries.outputs.cache-hit != 'true'
56
57
- path: "~/.nuget/packages"
+ path: |
58
+ ~/.nuget/packages
59
+ Intersect*/obj/project.assets.json
60
key: ${{ runner.os }}-nuget-${{ hashFiles('Intersect.*/*.csproj') }}
61
62
- name: Restore NuGet Packages
0 commit comments