修复构建
parent
9d38fe6764
commit
49797f891c
|
@ -137,7 +137,11 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install python setuptools
|
- 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
|
- name: Setup Node Env
|
||||||
uses: ./.github/actions/setup
|
uses: ./.github/actions/setup
|
||||||
|
|
|
@ -75,7 +75,7 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
Windows_7:
|
Windows_7:
|
||||||
name: Windows
|
name: Windows_7
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
env:
|
env:
|
||||||
NPM_CACHE: '%APPDATA%\npm-cache'
|
NPM_CACHE: '%APPDATA%\npm-cache'
|
||||||
|
@ -122,7 +122,11 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install python3 setuptools
|
- 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
|
- name: Setup Node Env
|
||||||
uses: ./.github/actions/setup
|
uses: ./.github/actions/setup
|
||||||
|
|
Loading…
Reference in New Issue