094b3e35b4
ROOT CAUSE OF CI/CD DEPLOYMENT FAILURE: Line 48 used: find ../src/KArtSell.Host/wwwroot -mindepth 1 -delete This fails because: 1. Directory may not exist 2. find -delete has permission issues in CI environment 3. No mkdir to create directory if missing SOLUTION: Replace with same pattern as deploy-working ci.yml: cd .. rm -rf src/KArtSell.Host/wwwroot mkdir -p src/KArtSell.Host/wwwroot cp -r frontend/dist/* src/KArtSell.Host/wwwroot/ This is portable, reliable, and works in all CI/CD environments. Also updated .gitignore to ignore entire wwwroot directory to prevent git ownership conflicts. This fixes the persistent "Build frontend into Host static assets" failure. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>