Skip to content

Commit

Permalink
add sphinx workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alperaltuntas committed Oct 27, 2024
1 parent c9f8136 commit 700784e
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
name: "Sphinx: Render docs"
name: documentation

on: push
on: [push, pull_request, workflow_dispatch]

permissions:
contents: write

jobs:
build:
docs:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Build HTML
uses: ammaraskar/sphinx-action@master
with:
pre-build-command: python -m pip install sphinx_rtd_theme
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: docs/_build/html/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme myst_parser
- name: Sphinx build
run: |
sphinx-build docs docs/_build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/
force_orphan: true

0 comments on commit 700784e

Please sign in to comment.