Skip to content

Merge pull request #268 from lsst-ts/tickets/DM-43772 #149

Merge pull request #268 from lsst-ts/tickets/DM-43772

Merge pull request #268 from lsst-ts/tickets/DM-43772 #149

Workflow file for this run

name: Docs
on:
pull_request:
paths:
- "docs/**"
- "apps/*/Chart.yaml"
- "apps/*/values.yaml"
- "services/*/Chart.yaml"
- "services/*/values.yaml"
push:
branches-ignore:
# These should always correspond to pull requests, so ignore them for
# the push trigger and let them be triggered by the pull_request
# trigger, avoiding running the workflow twice. This is a minor
# optimization so there's no need to ensure this is comprehensive.
- "dependabot/**"
- "renovate/**"
- "tickets/**"
- "u/**"
tags:
- "*"
paths:
- "docs/**"
- "apps/*/Chart.yaml"
- "apps/*/values.yaml"
- "services/*/Chart.yaml"
- "services/*/values.yaml"
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Check links
run: |
cd docs
make linkcheck
- name: Build site
run: |
cd docs
make html
# Only attempt documentation uploads for long-lived branches, tagged
# releases, and pull requests from ticket branches.
- name: Upload to LSST the Docs
if: >-
github.event_name != 'pull_request'
|| startsWith(github.head_ref, 'tickets/')
env:
LTD_USERNAME: ${{ secrets.LTD_USERNAME }}
LTD_PASSWORD: ${{ secrets.LTD_PASSWORD }}
run: ltd upload --product argocd-csc --gh --dir docs/_build/html