We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2437b71 commit 20143abCopy full SHA for 20143ab
.github/workflows/docs.yml
@@ -10,19 +10,12 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
- - name: Set up Python 3.9
14
- uses: actions/setup-python@v2
15
- with:
16
- python-version: 3.9
17
- - name: Install dependencies
18
- run: |
19
- pip install sphinx sphinx_rtd_theme
20
- - name: Build documentation
+ - name: Create dummy documentation
21
run: |
22
- sphinx-apidoc -o docs/source Grouper
23
- make -C docs html
+ mkdir -p docs/_build/html
+ echo "Hello, world!" > docs/_build/html/index.html
24
- name: Deploy to GitHub Pages
25
uses: peaceiris/actions-gh-pages@v3
26
with:
27
github_token: ${{ secrets.GITHUB_TOKEN }}
28
- publish_dir: docs/_build/html
+ publish_dir: docs/_build/html
0 commit comments