We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e498aa2 commit d3a2e4dCopy full SHA for d3a2e4d
.github/workflows/release.yml
@@ -77,8 +77,17 @@ jobs:
77
python -m pip install -r requirements-dev.txt
78
- name: Generate documentation
79
run: |
80
+ # Ensure docs directory exists
81
+ mkdir -p docs
82
+ # Build documentation
83
sphinx-build -b html docsrc docs -E -d "docsrc/_doctrees"
84
+ # Create .nojekyll to disable Jekyll processing
85
touch docs/.nojekyll
86
+ # Debug: list files in docs directory
87
+ echo "Contents of docs directory:"
88
+ ls -la docs/
89
+ echo "Checking for .nojekyll:"
90
+ ls -la docs/.nojekyll || echo ".nojekyll not found"
91
- name: Setup Pages
92
uses: actions/configure-pages@v4
93
- name: Upload artifact
0 commit comments