You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# change to the sphinx directory
cd sphinx
# run the Sphinx build command to generate the HTML output
make html
# after the build completes, navigate back to the project root directory
cd ..
Copy the Generated HTML to the docs Directory
cp -r sphinx/_build/html/* docs/
Commit and Push Changes to GitHub
git add sphinx/ docs/
git commit -m "Update documentation and deploy to GitHub Pages"
git push origin main