We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 393232c commit 9b08759Copy full SHA for 9b08759
.github/workflows/jekyll.yml
@@ -30,6 +30,20 @@ jobs:
30
- name: Build Site
31
uses: actions/jekyll-build-pages@v1.0.13
32
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
47
- name: Upload artifact
48
uses: actions/upload-artifact@v4
49
with:
0 commit comments