Skip to content

Tickets/preops 3766

Tickets/preops 3766 #9

Workflow file for this run

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@v3
- uses: conda-incubator/setup-miniconda@v2
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
package-docs build
- name: upload documentation
uses: lsst-sqre/ltd-upload@v1
with:
project: "schedview"
dir: "docs/_build/html"
username: ${{ secrets.ltd_username }}
password: ${{ secrets.ltd_password }}