From d9f37930b007874301bb5adbf43f90bc2e3dbb93 Mon Sep 17 00:00:00 2001 From: Alikasim Budhwani Date: Fri, 10 Feb 2023 13:30:51 -0500 Subject: [PATCH] Remove Zipping --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1030229609a8..57aa8a1e4a16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -204,16 +204,11 @@ jobs: PYFLUENT_START_INSTANCE: 0 FLUENT_IMAGE_TAG: ${{ matrix.image-tag }} - - name: Zip HTML Documentation before upload - run: | - sudo apt install zip -y - zip -r HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}.zip doc/_build/html - - name: Upload HTML Documentation uses: actions/upload-artifact@v3 with: name: HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }} - path: HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}.zip + path: doc/_build/html retention-days: 7 - name: Deploy stable documentation @@ -221,7 +216,6 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') with: doc-artifact-name: 'HTML-Documentation-tag-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}' - decompress_artifact: true cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }}