-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5066f69
commit 519ec28
Showing
1 changed file
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,8 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install sphinx | ||
python -m pip install sphinx-rtd-theme | ||
python -m pip install myst-parser # To support Markdown files | ||
python -m pip install furo # Install Furo theme | ||
python -m pip install sphinx sphinx-rtd-theme myst-parser furo | ||
- name: Build Sphinx documentation | ||
run: | | ||
|
@@ -37,7 +35,6 @@ jobs: | |
run: | | ||
cd docs/_build/html # Navigate to the built HTML files | ||
touch .nojekyll # Disable Jekyll to serve raw HTML/CSS | ||
rm -rf .git # Clean up any existing git repo in the build directory | ||
git init # Initialize a new Git repo in the build folder | ||
git add . | ||
git config --local user.email "[email protected]" | ||
|