From dd487de971405be5fe02de5e29f6571d5e7a6623 Mon Sep 17 00:00:00 2001 From: Scott Hanselman Date: Mon, 13 Apr 2026 18:09:07 -0700 Subject: [PATCH] ci: add NuGet cache to build-extension job Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77e13b2..dc8e642 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -257,6 +257,13 @@ jobs: with: dotnet-version: 10.0.x + - name: Cache NuGet packages + uses: actions/cache@v4 + with: + path: ~/.nuget/packages + key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }} + restore-keys: nuget-${{ runner.os }}- + - name: Restore Command Palette Extension run: dotnet restore src/OpenClaw.CommandPalette