diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4bed1ad8eb..ae77b533eb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -85,6 +85,22 @@ jobs: ls -lAFgh build/manual/build/html/index.html ls -lAFgh build/manual/build/latex/nexus.pdf + - name: HTML build artifacts + if: ${{ env.python_version == env.python_deploy_version }} + uses: actions/upload-artifact@v3 + with: + name: html + path: build/manual/build/html/ + retention-days: 30 + + - name: PDF build artifacts + if: ${{ env.python_version == env.python_deploy_version }} + uses: actions/upload-artifact@v3 + with: + name: nexus.pdf + path: build/manual/build/latex/nexus.pdf + retention-days: 30 + - name: Build and Commit the User Manual if: ${{ github.event.inputs.deploy && env.python_version == env.python_deploy_version }} uses: sphinx-notes/pages@master