File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 5454 - uses : actions/download-artifact@v4
5555 with :
5656 name : docs
57+ path : docs/_build
5758
5859 - name : Set up Python
5960 uses : actions/setup-python@v5
7980 chmod 600 ~/.ssh/id_rsa
8081 ssh-keyscan -H ${{ vars.DOCS_SERVER }} >> ~/.ssh/known_hosts || true
8182
83+ - name : Verify build directory
84+ run : |
85+ echo "Checking if docs/_build exists..."
86+ ls -la docs/_build || echo "ERROR: docs/_build does not exist!"
87+ echo ""
88+ echo "Checking for HTML directories..."
89+ find docs/_build -type d -name "html" 2>/dev/null || echo "WARNING: No html directories found"
90+ echo ""
91+ echo "Build directory structure:"
92+ find docs/_build -maxdepth 3 -type d 2>/dev/null | head -20 || true
93+
8294 - name : Deploy documentation
8395 working-directory : docs
8496 env :
You can’t perform that action at this time.
0 commit comments