Skip to content

Commit

Permalink
fix: CICD cache
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie committed Apr 19, 2024
1 parent d810cf9 commit 8b2fb27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
- name: "Cache Verification Manual examples"
uses: actions/cache@v4
if: ${{ env.USE_CACHE }} == 'true'
if: env.USE_CACHE == true
with:
path: doc/source/verif-manual
key: Examples-v${{ env.RESET_EXAMPLES_CACHE }}-${{ steps.version.outputs.PYMAPDL_VERSION }}-${{ github.sha }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
- name: "Cache docs build directory"
uses: actions/cache@v4
if: ${{ env.USE_CACHE }} == 'true'
if: env.USE_CACHE == true
with:
path: doc/_build
key: doc-build-v${{ env.RESET_DOC_BUILD_CACHE }}-${{ env.PYMAPDL_VERSION }}-${{ github.sha }}
Expand Down

0 comments on commit 8b2fb27

Please sign in to comment.