Skip to content

Commit

Permalink
do bugfix in yml file"
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickscholz committed Oct 21, 2024
1 parent e408733 commit c058dac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/sphinx-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x # Use an appropriate version for your project
python-version: 3.9 # Use an appropriate version for your project

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx-rtd-theme # Add other extensions if needed
# pip install -r requirements.txt # Install project dependencies
python -m pip install --upgrade pip
pip install sphinx sphinx-rtd-theme # Add other extensions if needed
pip install -e . # Install project dependencies
- name: Build documentation
run: |
cd docs
make html # Build the Sphinx documentation
cd docs
make html # Build the Sphinx documentation
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
Expand Down

0 comments on commit c058dac

Please sign in to comment.