We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents adb390f + 8b5fe3a commit 9675f1eCopy full SHA for 9675f1e
.github/workflows/publish.yaml
@@ -22,6 +22,13 @@ jobs:
22
# setup dotnet based on global.json
23
- name: setup-dotnet
24
uses: actions/setup-dotnet@v4
25
+ # cache NuGet packages to avoid re-downloading on every run
26
+ - name: Cache NuGet packages
27
+ uses: actions/cache@v5
28
+ with:
29
+ path: ~/.nuget/packages
30
+ key: nuget-${{ runner.os }}-${{ hashFiles('**/*.fsproj', '**/*.csproj', 'global.json') }}
31
+ restore-keys: nuget-${{ runner.os }}-
32
# build it, test it, pack it, publish it
33
- name: Run dotnet build (release, for nuget)
34
# see issue #105 and #243
0 commit comments