Skip to content

Commit 94de54b

Browse files
committed
fix: Install dependencies from requirements.txt in CI workflow
Install all dependencies from requirements.txt instead of hardcoding them, ensuring Pillow is available for icon conversion. 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush <crush@charm.land>
1 parent 879825a commit 94de54b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
pip install PySide6 pynput pywin32
28+
pip install -r requirements.txt
2929
3030
- name: Install PyInstaller
3131
run: pip install pyinstaller

0 commit comments

Comments
 (0)