Skip to content

Commit ad8e624

Browse files
Dale KunceDale Kunce
authored andcommitted
Add minimal CSS verification to build step
- Check for main.css after build completes - Will help diagnose any CSS build issues in GitHub Actions - Non-disruptive logging only
1 parent 239cfa3 commit ad8e624

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ jobs:
3838
run: npm run lint
3939

4040
- name: Build site
41-
run: npm run build
41+
run: |
42+
npm run build
43+
echo "=== Build completed, checking for CSS files ==="
44+
ls -la _site/assets/styles/ || echo "No _site/assets/styles directory found"
45+
find _site -name "main.css" -type f || echo "No main.css found in _site"
4246
env:
4347
JEKYLL_ENV: production
4448

0 commit comments

Comments
 (0)