From fe7f4233b9d21c1de9da53464a5e912dc1243ad3 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Thu, 12 Sep 2024 06:44:31 +0400 Subject: [PATCH] Add missing ThirdParty cache to Windows action --- .github/workflows/win.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index 3a85c057d..d08d5824d 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -94,6 +94,14 @@ jobs: nuget sources Disable -Name "Microsoft Visual Studio Offline Packages" nuget sources Add -Source https://api.nuget.org/v3/index.json & exit 0 + - name: ThirdParty cache. + id: cache-third-party + uses: actions/cache@v4 + with: + path: ${{ env.TBUILD }}\ThirdParty + key: ${{ runner.OS }}-${{ matrix.arch }}-third-party-${{ env.CACHE_KEY }} + restore-keys: ${{ runner.OS }}-${{ matrix.arch }}-third-party- + - name: Libraries cache. id: cache-libs uses: actions/cache@v4