-
Notifications
You must be signed in to change notification settings - Fork 3
52 lines (41 loc) · 1.15 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Sphinx Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Sphinx
run: |
python -m pip install --upgrade pip
pip install sphinx
pip install sphinx_rtd_theme
pip install sphinx_tabs
- name: Build Documentation
run: |
cd docs
make html
ls -la build/html # Add this line to list the files in the build directory
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: List Files in Publish Directory
run: |
ls -la docs/build/html # Add this line to list the files in the publish directory
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
publish_branch: gh-pages