From 84fa764c0fc5fbda769aa51e662ecc78febc6740 Mon Sep 17 00:00:00 2001 From: Ian Date: Tue, 23 Jul 2024 12:21:46 -0400 Subject: [PATCH] Update documentation.yml separate steps of docs job by new line for readability --- .github/workflows/documentation.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 800e5d7..da4f937 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -11,12 +11,15 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 + - name: Install dependencies run: | pip install sphinx sphinx_rtd_theme myst_parser piccolo_theme + - name: Sphinx build run: | sphinx-build doc _build + - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}