From 0bb515bfd56e739bf4466f4c6c6568b40dd7698b Mon Sep 17 00:00:00 2001 From: mattcasey Date: Sat, 7 Sep 2024 12:56:21 -0600 Subject: [PATCH] fix tpl --- .github/actions/install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 3d4dafbc7d..906f21359b 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -50,7 +50,7 @@ runs: shell: bash if: steps.restore_node_modules.outputs.cache-hit != 'true' # This is a temporary step while we figure out a way to ensure compatibility with lens protocol which currently needs ethers-v5 - run: npm ci --no-audit --no-fund --force ${{ inputs.app_name && `--include-workspace-root -w apps/${inputs.app_name}` || '' }} + run: npm ci --no-audit --no-fund --force ${{ inputs.app_name && format('--include-workspace-root -w apps/{0}`, inputs.app_name) || '' }} # If installing specific version of core via npmjs - name: Upgrade Core package to version ${{ inputs.core_pkg_version }}