Skip to content

Commit

Permalink
Zip HTML doc before upload in CI run. (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
prmukherj authored Jan 4, 2023
1 parent 6fdcce3 commit 62cc432
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 62cc432

Please sign in to comment.