From 79e9491389c47f80997865de602e85c977f708a4 Mon Sep 17 00:00:00 2001 From: "saru@southpole" Date: Tue, 20 Aug 2024 13:20:53 -0700 Subject: [PATCH] modified build_and_deploy --- .github/workflows/build_and_deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 49808f8..cc078f7 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -38,6 +38,7 @@ jobs: - name: Upload documentation artifact uses: actions/upload-pages-artifact@v3 with: + name: documentation path: Docs/build/html deploy: @@ -45,6 +46,11 @@ jobs: needs: build if: github.event_name == 'push' && github.ref == 'refs/heads/development' steps: + - name: Download documentation artifact + uses: actions/download-artifact@v3 + with: + name: documentation + - name: deploy to gh-pages branch uses: actions/deploy-pages@v2 with: