DM-46960 Initial implementation for DREAM and ATBuilding CSCs +40-0 #188
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: 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 |