tickets/PREOPS-5367: use target_note instead of target, and make schedview more robust to changes in the opsim database schema #367
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Upload Docs | |
"on": | |
push: | |
tags: | |
- "*" | |
branches: | |
- "main" | |
pull_request: {} | |
workflow_dispatch: | |
jobs: | |
build_sphinx_docs: | |
name: Build and upload documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: "3.11" | |
channels: conda-forge | |
channel-priority: strict | |
show-channel-urls: true | |
- name: Configure and install requirements and documenteer | |
shell: bash -l {0} | |
run: | | |
conda config --set always_yes yes | |
conda install --quiet --file=requirements.txt | |
conda install --quiet pip | |
pip install "documenteer[guide]" | |
- name: Install schedview | |
shell: bash -l {0} | |
run: | | |
echo `pwd` | |
python -m pip install . | |
- name: Check conda and documenteer | |
shell: bash -l {0} | |
run: | | |
conda list | |
- name: Build docs | |
shell: bash -l {0} | |
run: | | |
cd docs | |
make html | |
- name: Upload documentation | |
uses: lsst-sqre/ltd-upload@v1 | |
with: | |
project: "schedview" | |
dir: "docs/_build/html" | |
username: ${{ secrets.ltd_username }} | |
password: ${{ secrets.ltd_password }} |