Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
lilingfengdev committed Jun 9, 2024
1 parent b92b61e commit 2522ba3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
python-version: "3.11"
- name: Install Dependencies
run: |
if [ "${{ matrix.os }}" == "windows-latest" ]; then
python -m pip install pyyaml install-jdk tqdm psutil requests pygithub rtoml-0.10.0-cp311-none-win_amd64.whl pyinstaller
if [ ${{ matrix.os }} == "windows-latest" ]; then
python3 -m pip install pyyaml install-jdk tqdm psutil requests pygithub rtoml-0.10.0-cp311-none-win_amd64.whl pyinstaller
else
python -m pip install pyyaml install-jdk tqdm psutil requests pygithub rtoml pyinstaller
python3 -m pip install pyyaml install-jdk tqdm psutil requests pygithub rtoml pyinstaller
- name: Generate Bundle
run: |
python generate-bundle.py
Expand Down

0 comments on commit 2522ba3

Please sign in to comment.