diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 993c5fa27..d35eb3517 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -428,6 +428,9 @@ jobs: # Make the pdf doc & validate results make_doc pdf + # Make simple pdf + make_doc simplepdf + - name: Upload HTML Documentation uses: actions/upload-artifact@v4 with: @@ -435,6 +438,11 @@ jobs: path: doc/_build/html retention-days: 7 + - name: Add simple pdf to downloads + run: | + mkdir -p ./doc/_build/html/_static/download + cp ./doc/_build/latex/ansys-mechanical-core.pdf ./doc/_build/html/_static/download/ + - name: Upload PDF Documentation uses: actions/upload-artifact@v4 with: @@ -442,6 +450,13 @@ jobs: path: doc/_build/latex/*.pdf retention-days: 7 + - name: Upload simple PDF Documentation + uses: actions/upload-artifact@v4 + with: + name: documentation-pdf + path: doc/_build/simplepdf/*.pdf + retention-days: 7 + coverage: name: Merging coverage needs: [tests, embedding-tests, launch-tests]