Skip to content

Bwheelz36 patch 1

Bwheelz36 patch 1 #6

Workflow file for this run

name: build docs
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install pandoc
run: sudo apt-get install -y pandoc
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx
pip install nbsphinx
pip install sphinx_rtd_theme
pip install jupyter
- name: Install package
run: |
pip install -e .
- name: build sphinx docs
run: |
cd docsrc
make github
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs