diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index be27a507..b91ce6f0 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -24,7 +24,7 @@ jobs: - name: Build documentation run: make docs-sphinx - name: Upload the build - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sphinx_html_docs path: build/sphinx @@ -48,5 +48,6 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - artifact_name: sphinx_html_docs - uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action \ No newline at end of file + uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action + with: + artifact_name: sphinx_html_docs \ No newline at end of file