Skip to content

Merge pull request #40 from ernestofgonzalez/fix/google-signin #18

Merge pull request #40 from ernestofgonzalez/fix/google-signin

Merge pull request #40 from ernestofgonzalez/fix/google-signin #18

Workflow file for this run

name: Publish documentation
on:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
pip install -r requirements/requirements-docs.txt
- name: Sphinx build
run: |
sphinx-build docs _build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true