Skip to content

Commit

Permalink
Merge pull request #52 from adrienne-deriv/deploy-docs
Browse files Browse the repository at this point in the history
Fix deployment issue on cf
  • Loading branch information
niloofar-deriv authored Apr 29, 2024
2 parents 4e58186 + 9ca3781 commit 23b21a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 23b21a8

Please sign in to comment.