From 8aa3c1ffd8f0c62676c28f1c0217caea7b07a0db Mon Sep 17 00:00:00 2001 From: Philippe Matray Date: Sat, 28 Feb 2026 19:13:54 +0100 Subject: [PATCH] fix: add missing dotnet restore step in create_nuget job The build step uses --no-restore but no prior restore step existed, causing NETSDK1004 errors (missing project.assets.json). --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14949f4..0328098 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,6 +64,9 @@ jobs: with: dotnet-version: 10.x + - name: Restore dependencies + run: dotnet restore + # Build the project first so that staticwebassets.build.json manifest is generated - name: Build run: dotnet build --configuration Release --no-restore