Skip to content

Update make_caracal_docs.py #11

Update make_caracal_docs.py

Update make_caracal_docs.py #11

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Upload to Read the docs
on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx-rtd-theme
pip install recommonmark
pip install ruamel.yaml==0.17.21
- name: Clone caracal repo
run: git clone https://github.com/caracal-pipeline/caracal.git ../caracal/
- name: Publish docs
run: |
python make_caracal_docs.py
cd sphinx && make html