Skip to content

Commit 9b08759

Browse files
committed
fix: deploy
1 parent 393232c commit 9b08759

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/jekyll.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@ jobs:
3030
- name: Build Site
3131
uses: actions/jekyll-build-pages@v1.0.13
3232

33+
- name: Validate Site Content
34+
run: |
35+
echo "Checking for symlinks and hard links..."
36+
find _site -type l -exec ls -la {} \; || echo "No symlinks found"
37+
38+
echo "Checking total size..."
39+
du -sh _site
40+
41+
# Remove any potential problematic files
42+
find _site -type l -delete
43+
44+
# Ensure permissions are set correctly
45+
chmod -R 755 _site
46+
3347
- name: Upload artifact
3448
uses: actions/upload-artifact@v4
3549
with:

0 commit comments

Comments
 (0)