修复构建

pull/1869/head
lyswhut 2024-04-27 15:40:14 +08:00
parent 9d38fe6764
commit 49797f891c
2 changed files with 11 additions and 3 deletions

View File

@ -137,7 +137,11 @@ jobs:
uses: actions/checkout@v4
- name: Install python setuptools
run: python3 -m pip install setuptools
run: |
mkdir ~/.venv
python3 -m venv ~/.venv
source ~/.venv/bin/activate
python3 -m pip install setuptools
- name: Setup Node Env
uses: ./.github/actions/setup

View File

@ -75,7 +75,7 @@ jobs:
Windows_7:
name: Windows
name: Windows_7
runs-on: windows-latest
env:
NPM_CACHE: '%APPDATA%\npm-cache'
@ -122,7 +122,11 @@ jobs:
uses: actions/checkout@v4
- name: Install python3 setuptools
run: python3 -m pip install setuptools
run: |
mkdir ~/.venv
python3 -m venv ~/.venv
source ~/.venv/bin/activate
python3 -m pip install setuptools
- name: Setup Node Env
uses: ./.github/actions/setup