Skip to content

Commit

Permalink
freeze pyinstaller version in manual build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
triwinds committed Jan 28, 2023
1 parent 510a5eb commit ced4f58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/manual-build-console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- run: |
python -m venv venv
venv\Scripts\activate.ps1
pip install -r requirements.txt pyinstaller
pip install -r requirements.txt pyinstaller==5.6.2
pyinstaller --noconfirm --onefile --console --icon "./web/favicon.ico" --add-data "./module/*.exe;./module/" --add-data "./web;web/" "./main.py" --additional-hooks-dir=".\\hooks" --name "NsEmuTools-console"
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-build-webview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- run: |
python -m venv venv
venv\Scripts\activate.ps1
pip install -r requirements.txt pyinstaller pywebview
pip install -r requirements.txt pyinstaller==5.6.2 pywebview
pyinstaller --noconfirm --onefile --console --icon "./web/favicon.ico" --add-data "./module/*.exe;./module/" --add-data "./web;web/" "./ui_webview.py" --additional-hooks-dir=".\\hooks" --name "NsEmuTools-webview"
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit ced4f58

Please sign in to comment.