We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee5f5a3 commit e02a11aCopy full SHA for e02a11a
.github/workflows/main-rendering.yml
@@ -74,7 +74,7 @@ jobs:
74
- name: Insert redirecting Index.html in folders missing one
75
shell: bash
76
run: |
77
- find result -type d | while read dir; do
+ find result \( -path "*/_sources" -o -path "*/_sources/*" -o -path "*/_resources" -o -path "*/_resources/*" \) -prune -o -type d -print | while read dir; do
78
if [ ! -f "$dir/Index.html" ]; then
79
echo "Creating Index.html in $dir"
80
echo '<!DOCTYPE html>' > "$dir/Index.html"
@@ -89,6 +89,7 @@ jobs:
89
fi
90
done
91
92
+
93
- name: Upload Documentation
94
uses: appleboy/scp-action@master
95
with:
0 commit comments