Skip to content

Commit eb33669

Browse files
committed
fix(build-release): missing venv path
Signed-off-by: 晨叶梦春 <65224318+wuziqian211@users.noreply.github.com>
1 parent b4b89f7 commit eb33669

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
pip install -r requirements.txt
2828
- name: Build app with PyInstaller
2929
run: |
30-
pyinstaller ./tchMaterial-parser.spec
30+
.venv\Scripts\pyinstaller ./tchMaterial-parser.spec
3131
cd dist
3232
mv tchMaterial-parser.exe tchMaterial-parser-windows-x64.exe
3333
- name: Upload Release Asset
@@ -56,7 +56,7 @@ jobs:
5656
pip install -r requirements.txt
5757
- name: Build app with PyInstaller
5858
run: |
59-
pyinstaller ./tchMaterial-parser.spec
59+
.venv/bin/pyinstaller ./tchMaterial-parser.spec
6060
cd dist
6161
mv tchMaterial-parser tchMaterial-parser-linux-x64
6262
- name: Upload Release Asset
@@ -85,7 +85,7 @@ jobs:
8585
pip install -r requirements.txt
8686
- name: Build app with PyInstaller
8787
run: |
88-
pyinstaller ./tchMaterial-parser.spec
88+
.venv/bin/pyinstaller ./tchMaterial-parser.spec
8989
cd dist
9090
mv tchMaterial-parser tchMaterial-parser-linux-arm64
9191
- name: Upload Release Asset
@@ -114,7 +114,7 @@ jobs:
114114
pip install -r requirements.txt
115115
- name: Build app with PyInstaller
116116
run: |
117-
pyinstaller ./tchMaterial-parser.spec
117+
.venv/bin/pyinstaller ./tchMaterial-parser.spec
118118
cd dist
119119
mv tchMaterial-parser tchMaterial-parser-mac-arm64.app
120120
- name: Upload Release Asset

0 commit comments

Comments
 (0)