Skip to content

Hotfix to the METviewer Docker Container tutorial instructions. Corre… #190

Hotfix to the METviewer Docker Container tutorial instructions. Corre…

Hotfix to the METviewer Docker Container tutorial instructions. Corre… #190

Workflow file for this run

name: Documentation
on:
push:
branches:
- develop
- feature_*
- main_*
- bugfix_*
paths:
- docs/**
pull_request:
types: [opened, reopened, synchronize]
jobs:
documentation:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade sphinx sphinx-gallery sphinx_rtd_theme
- name: Build Documentation
run: ./.github/jobs/build_documentation.sh
- uses: actions/upload-artifact@v2
if: always()
with:
name: METplus-Training_documentation
path: artifact/documentation
- uses: actions/upload-artifact@v2
if: failure()
with:
name: documentation_warnings.log
path: artifact/doc_warnings.log
if-no-files-found: ignore