mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
try to cache vpk
This commit is contained in:
parent
b24b035d89
commit
943a9fd982
1 changed files with 10 additions and 1 deletions
11
.github/workflows/dotnet.yml
vendored
11
.github/workflows/dotnet.yml
vendored
|
|
@ -30,12 +30,21 @@ jobs:
|
|||
version: '1.17.2'
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/cache@v4
|
||||
name: Restore Nuget Cache
|
||||
with:
|
||||
path: |
|
||||
~/.nuget/packages
|
||||
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
|
||||
${{ runner.os }}-nuget
|
||||
- uses: actions/cache@v4
|
||||
name: Restore dotnet tool Cache
|
||||
with:
|
||||
path: |
|
||||
~/.dotnet/tools
|
||||
key: ${{ runner.os }}-dotnet-tools-${{ hashFiles('~/.dotnet/tools/**') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-dotnet-tools
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in a new issue