From 4afe694617d03fc08c01853223cbeaaef1053aaa Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 9 Oct 2024 16:46:35 +0100 Subject: [PATCH] Run dotnet restore before build. --- .github/workflows/dotnet-core.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 5779ed9da..9de338960 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -90,6 +90,9 @@ jobs: dotnet-version: 8.x dotnet-quality: 'ga' + - name: Restore dependencies + run: dotnet restore + - name: Build Release run: dotnet build --configuration Release