Skip to content

Docs

Docs #35

Workflow file for this run

name: Docs
on: [push, release]
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
jobs:
notebooks:
name: "Build the notebooks for the docs"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -r .github/workflows/requirements_docs.txt
# - name: Execute the notebooks
# run: |
# jupytext --to ipynb --execute docs/source/tutorials/*.ipynb
# - uses: actions/upload-artifact@v2
# with:
# name: notebooks-for-${{ github.sha }}
# path: docs/source/tutorials
- name: Trigger RTDs build
uses: dfm/rtds-action@v1
with:
webhook_url: ${{ secrets.RTDS_WEBHOOK_URL }}
webhook_token: ${{ secrets.RTDS_WEBHOOK_TOKEN }}
commit_ref: ${{ github.ref }}