Skip to content

Commit

Permalink
💚 ci: Fix dependencies not being correctly installed.
Browse files Browse the repository at this point in the history
Signed-off-by: kokodev <[email protected]>
  • Loading branch information
kokofixcomputers committed Nov 30, 2024
1 parent de43b59 commit 7989395
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Dependencies
run: pip install -r requirements.txt

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -52,6 +55,9 @@ jobs:
with:
python-version: '3.9'

- name: Install Dependencies
run: pip install -r requirements.txt

- name: Install PyInstaller
run: pip install pyinstaller

Expand Down Expand Up @@ -83,6 +89,9 @@ jobs:
- name: Install PyInstaller
run: pip install pyinstaller

- name: Install Dependencies
run: pip install -r requirements.txt

- name: Build executable for macOS
run: |
pyinstaller --onefile commitify.py
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
- name: Install PyInstaller
run: pip install pyinstaller

- name: Install Dependencies
run: pip install -r requirements.txt

- name: Build executable for Linux
run: |
pyinstaller --onefile commitify.py
Expand Down Expand Up @@ -71,6 +74,9 @@ jobs:
- name: Install PyInstaller
run: pip install pyinstaller

- name: Install Dependencies
run: pip install -r requirements.txt

- name: Build executable for Windows
run: |
pyinstaller --onefile commitify.py
Expand Down Expand Up @@ -99,6 +105,9 @@ jobs:
- name: Install PyInstaller
run: pip install pyinstaller

- name: Install Dependencies
run: pip install -r requirements.txt

- name: Build executable for macOS
run: |
pyinstaller --onefile commitify.py
Expand Down

0 comments on commit 7989395

Please sign in to comment.