Skip to content

Commit

Permalink
Added PyInstaller to dependancies when building executable
Browse files Browse the repository at this point in the history
  • Loading branch information
PrestonHager committed Mar 28, 2024
1 parent 62dda75 commit 22ec3b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-app-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install PyInstaller
- name: Build executable
run: |
python -m PyInstaller Wordweaver.spec
Expand All @@ -45,6 +46,7 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install PyInstaller
- name: Build executable
run: |
python -m PyInstaller Wordweaver.spec
Expand All @@ -65,6 +67,7 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install PyInstaller
- name: Build executable
run: |
python -m PyInstaller Wordweaver.spec
Expand Down

0 comments on commit 22ec3b0

Please sign in to comment.