Skip to content

Commit

Permalink
Add github actions to update sphinx docs
Browse files Browse the repository at this point in the history
  • Loading branch information
BennyThadikaran committed Apr 29, 2024
1 parent 8ea1d5a commit 05854e3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Sphinx: Render docs"

on: push

jobs:
pages:
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- id: deployment
uses: sphinx-notes/pages@v3
with:
publish: false
documentation_path: ./docs/source
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ steps.deployment.outputs.artifact }}

0 comments on commit 05854e3

Please sign in to comment.