Skip to content

Commit

Permalink
build: 修改构建流程,安装zip并调整依赖安装顺序
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryliang122 committed Dec 2, 2024
1 parent a8ac057 commit b763c42
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-program.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:
with:
python-version: "3.11"

- name: Install dependencies
- name: Install zip
run: |
pip install -r requirements.txt
choco install zip
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: install pyinstaller
run: |
pip install pyinstaller
Expand Down

0 comments on commit b763c42

Please sign in to comment.