Skip to content

Publish docs

Publish docs #74

Workflow file for this run

# This workflow builds and publishes the latest docs to
# the `gh-pages` branch.
# For more details: https://github.com/marketplace/actions/deploy-to-github-pages
name: Publish docs
on:
release:
types: [created]
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
with:
# fetch all tags so `versioneer` can properly determine current version
fetch-depth: 0
- name: Set up Python
uses: conda-incubator/setup-miniconda@v2
with:
python-version: '3.9'
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: true
activate-environment: rubicon-ml-docs
- name: Install rubicon-ml
# `pandoc` executable is not properly installed via `pip`, requires `conda`
run: |
conda install 'pandoc<3.0.0'
pip install -e '.[docs]'
- name: Build
run: |
cd docs
make html
- name: Publish
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/build/html