From 671d610c9de3997573a7c033bb7323b004bf2e98 Mon Sep 17 00:00:00 2001 From: kaluluosi111 Date: Thu, 23 Nov 2023 19:27:34 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/env_setup/action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/actions/env_setup/action.yml b/.github/actions/env_setup/action.yml index 54dfb6f..7fbf061 100644 --- a/.github/actions/env_setup/action.yml +++ b/.github/actions/env_setup/action.yml @@ -6,9 +6,12 @@ runs: using: "composite" steps: + - name: chcp + shell: powershell + run: chcp 65001 - name: Install Poetry-安装poetry - shell: bash + shell: powershell run: pipx install poetry - name: Setup Python-安装python环境 @@ -18,7 +21,7 @@ runs: cache: 'poetry' # 缓存poetry - name: Update pip - shell: bash + shell: powershell run: pip install --upgrade pip - name: Install