Merge pull request #14 from dfm/patch-1 #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
sudo apt-get -yqq install pandoc | |
pip install --upgrade pip setuptools | |
pip install ipykernel ipython==8.12.0 jupyter | |
pip install sphinx numpydoc nbsphinx sphinx_rtd_theme sphinx-tabs autodoc ipython-genutils | |
pip install . | |
- name: Setup tutorials | |
run: | | |
ls | |
cp tutorials/*.ipynb ./docs | |
cp tutorials/*.dat ./docs | |
cp -r tutorials/input ./docs | |
ls docs | |
- name: Sphinx build | |
run: | | |
cd docs | |
make clean | |
make html | |
cd - | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
name: github-pages | |
path: docs/_build/ | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' }} | |
with: | |
publish_branch: gh-pages | |
keep_files: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_build/html/ | |
force_orphan: true |