Skip to content

Merge pull request #136 from jpuerto-psc/jpuerto/README-fix #212

Merge pull request #136 from jpuerto-psc/jpuerto/README-fix

Merge pull request #136 from jpuerto-psc/jpuerto/README-fix #212

name: Deploy docs to gh-pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r docs/requirements.txt
- name: Building docs
run: cd docs && make build-html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build