Skip to content
4 changes: 3 additions & 1 deletion .github/workflows/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
run: ls -la

- name: Install dependencies
run: pip install pyinstaller
run: |
pip install -r requirements.txt
pip install pyinstaller

- name: Build EXE
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
run: dir

- name: Install dependencies
run: pip install pyinstaller
run: |
pip install -r requirements.txt
pip install pyinstaller

- name: Build EXE
run: |
Expand Down