From 9ca37818e44b43cd868981aae32fab7892ef01ae Mon Sep 17 00:00:00 2001 From: adrienne-rio Date: Mon, 29 Apr 2024 12:36:20 +0800 Subject: [PATCH] chore: fix deployment issue on cf --- .github/workflows/build-and-publish-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish-docs.yml b/.github/workflows/build-and-publish-docs.yml index c6b946e..ce15891 100644 --- a/.github/workflows/build-and-publish-docs.yml +++ b/.github/workflows/build-and-publish-docs.yml @@ -34,12 +34,12 @@ jobs: path: ./utils-docs/node_modules - name: Install npm dependencies - if: steps.cache-node-modules.outputs.cache-hit == 'true' + if: ${{ steps.cache-node-modules.outputs.cache-hit == 'true' }} run: cd utils-docs && npm ci shell: bash - name: save_cache - if: steps.cache-node-modules.outputs.cache-hit != 'true' + if: ${{ steps.cache-node-modules.outputs.cache-hit != 'true' }} uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c with: path: ./utils-docs/node_modules