From a63e85be66a074d75380b75a5175f7cf4367ed7f Mon Sep 17 00:00:00 2001 From: gxz Date: Fri, 19 Jul 2024 21:23:11 +0800 Subject: [PATCH] chore: optimize --- .github/actions/setup/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index d4a14a7a7..a0d33913c 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -3,7 +3,7 @@ description: Setup Node.js and install dependencies inputs: skip_install: required: false - default: false + default: 'false' runs: using: composite @@ -23,7 +23,7 @@ runs: python-version: 3.11.5 - name: Install dependencies - if: ${{ inputs.skip_install == false }} + if: ${{ inputs.skip_install == 'false' }} run: | yarn config set agora-electron-sdk-pre-built 0 yarn install --frozen-lockfile