Skip to content

Commit a70853b

Browse files
committed
CI: enumerate all project files when calculating caching policy
1 parent 94cf58d commit a70853b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/cache@v4
3333
with:
3434
path: ${{ env.NUGET_PACKAGES }}
35-
key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }}
35+
key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.*proj') }}
3636
- name: Build
3737
run: dotnet build
3838
- name: Test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: actions/cache@v4
4646
with:
4747
path: ${{ env.NUGET_PACKAGES }}
48-
key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }}
48+
key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.*proj') }}
4949
- name: Publish
5050
run: dotnet publish Emulsion --output publish -p:UseAppHost=false
5151
- name: Pack

0 commit comments

Comments
 (0)