From 464247f620447ab6ef1598a7da12953064a6586f Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Fri, 9 Dec 2022 13:18:32 +0530 Subject: [PATCH] Zip HTML doc before upload in CI run. --- .github/workflows/ci_cd.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index fd1f3442..2bd7c77d 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -149,11 +149,16 @@ jobs: DOCS_CNAME: fluentvisualization.docs.pyansys.com FLUENT_IMAGE_TAG: ${{ matrix.image-tag }} + - name: Zip HTML Documentation before upload + run: | + sudo apt install zip -y + zip -r doc.zip doc/_build/html + - name: Upload HTML Documentation uses: actions/upload-artifact@v3 with: name: HTML-Documentation-tag-${{ matrix.image-tag }} - path: doc/_build/html + path: doc.zip retention-days: 7 - name: Deploy