From 676f63e7dc179ddf5109c1e7f35f15b8a9922c47 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Mon, 4 May 2026 22:43:12 -0400 Subject: [PATCH] Add wwwroot verification step after publish to diagnose missing static files --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 8385dec..6d30b38 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,6 +36,7 @@ pipeline { stage('Publish') { steps { bat 'dotnet publish src\\PowderCoating.Web\\PowderCoating.Web.csproj -c Release -r linux-x64 --self-contained false -o publish' + bat 'dir publish\\wwwroot /s /b 2>nul | findstr /i "css\\|site.css\\|manifest.json\\|tag-input" || echo [WARN] wwwroot appears empty or missing' } }