From f9ac261f42fd9e4ab795f3377adceb5aeb7962f0 Mon Sep 17 00:00:00 2001 From: Marko Lahma Date: Thu, 20 Oct 2022 09:09:48 +0300 Subject: [PATCH] change to use solution for restore again --- .github/workflows/pr_ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pr_ci.yml b/.github/workflows/pr_ci.yml index 588b772be78..0d1175ca2f3 100644 --- a/.github/workflows/pr_ci.yml +++ b/.github/workflows/pr_ci.yml @@ -54,11 +54,10 @@ jobs: restore-keys: | ${{ runner.os }}-nuget- - # we can restore just OrchardCore.Cms.Web.csproj because it links to full dependency file, with Directory.Packages.props should use solution - name: Restore if: steps.cache-nuget.outputs.cache-hit != 'true' run: | - dotnet restore --force-evaluate /p:DisableImplicitNuGetFallbackFolder=true /p:DisableImplicitLibraryPacksFolder src/OrchardCore.Cms.Web/OrchardCore.Cms.Web.csproj + dotnet restore /p:DisableImplicitNuGetFallbackFolder=true /p:DisableImplicitLibraryPacksFolder # for CI build we can use Deterministic = false to enable restore - name: Build