-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (31 loc) · 942 Bytes
/
sphinx.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This workflow will deploy the Sphinx documentation of a Python Package to GitHub Pages
name: Deploy documentation
on: push
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
sudo apt install pandoc
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme ipython nbsphinx
- name: Sphinx build
run: |
sphinx-build -b html docs/source public
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: public
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: public
force_orphan: true