Skip to content

Commit 09f99f0

Browse files
committed
fix run command
1 parent b037efd commit 09f99f0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build-win.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ jobs:
1818
python-version: '3.12'
1919

2020
- name: Install dependencies
21-
run: python -m pip install --upgrade pip setuptools wheel
22-
run: pip install -r src/requirements.txt
23-
run: pip install -r build/requirements.txt
21+
run: |
22+
python -m pip install --upgrade pip setuptools wheel
23+
pip install -r src/requirements.txt
24+
pip install -r build/requirements.txt
2425
2526
- name: Build executable
2627
run: pyinstaller build/chirplab.spec

0 commit comments

Comments
 (0)