We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da9b4d commit 903e996Copy full SHA for 903e996
1 file changed
.github/workflows/deploy.yml
@@ -39,7 +39,7 @@ jobs:
39
- name: Verify structure
40
run: |
41
ls -R ./out # Debug: Show built files
42
- test -f ./out/index.html || exit 1 # Fail if no index.html
+ test -f ./out/index.html && echo "index.html is missing" || exit 1
43
grep -q "⚠️ Failed to load repository data" ./out/github_repos/index.html && echo "⚠️ Failed to load repository data" && exit 1
44
45
- name: Deploy to GitHub Pages
0 commit comments