Skip to content

Commit

Permalink
Fix missing docs build step
Browse files Browse the repository at this point in the history
  • Loading branch information
ETA444 committed Jul 11, 2024
1 parent e5b07da commit dadac4f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
echo "${{ secrets.DS_SERVER_HOST_KEY_ECDSA }}" >> ~/.ssh/known_hosts
echo "${{ secrets.DS_SERVER_HOST_KEY_ED25519 }}" >> ~/.ssh/known_hosts
- name: Build documentation (Sphinx)
run: poetry run sphinx-build -b html docs/ docs/_build/html

- name: Sync documentation to server
run: rsync -avz --delete -e "ssh -p ${{ secrets.DS_SERVER_SSH_PORT }}" --verbose ./docs/_build/html/ ${{ secrets.DS_SERVER_USERNAME }}@${{ secrets.DS_SERVER_IP }}:${{ secrets.DS_SERVER_DOCS_PATH }}
env:
Expand Down

0 comments on commit dadac4f

Please sign in to comment.