Skip to content

Commit

Permalink
added Sphinx workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lucl13 committed Aug 5, 2024
1 parent 7971d32 commit 8952104
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ jobs:
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
wget https://github.com/jgm/pandoc/releases/download/3.3/pandoc-3.3-1-amd64.deb
sudo dpkg -i pandoc-3.3-1-amd64.deb
cd $GITHUB_WORKSPACE/docs
python -m pip install -r requirements.txt
pip install hdxrate
- name: Build Sphinx Docs
run: |
cd docs
TZ=UTC make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
Expand Down

0 comments on commit 8952104

Please sign in to comment.