From 06e56251742491449cc45653e043543a4c288cd9 Mon Sep 17 00:00:00 2001 From: Paul Fisher Date: Mon, 14 Aug 2023 11:06:56 -0400 Subject: [PATCH] XXX test to see if full publish workflow works --- .github/workflows/build-docs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index fa27c838a..932c862ca 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -22,9 +22,9 @@ jobs: sphinx-build docs/source docs/build - name: Deploy uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} + if: ${{ github.event_name == 'push' }} with: publish_branch: gh-pages github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/build/html/ + publish_dir: ./docs/build force_orphan: true