Skip to content

Commit

Permalink
修复构建
Browse files Browse the repository at this point in the history
  • Loading branch information
lyswhut committed Apr 27, 2024
1 parent 9d38fe6 commit 49797f8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/beta-pack.yml
Expand Up @@ -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
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -75,7 +75,7 @@ jobs:
Windows_7:
name: Windows
name: Windows_7
runs-on: windows-latest
env:
NPM_CACHE: '%APPDATA%\npm-cache'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 49797f8

Please sign in to comment.