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: