Skip to content

Commit fff9909

Browse files
committed
call pyinstaller withouth further arguments
1 parent 5d7e9bb commit fff9909

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ jobs:
9595
# Install PyInstaller
9696
pip install --progress-bar=off pyinstaller
9797
# Run PyInstaller
98-
pyinstaller --clean -y --dist ./dist/${{ matrix.os }} *.spec
98+
pyinstaller quit.spec
9999
100100
- name: Rename Lin and Mac Release
101101
if: ${{ !startsWith(matrix.os, 'windows') }}
102-
run: cp ./dist/${{ matrix.os }}/run ./dist/quit-${{ matrix.os }}
102+
run: cp ./dist/run ./dist/quit-${{ matrix.os }}
103103

104104
- name: Rename Win Release
105105
if: ${{ startsWith(matrix.os, 'windows') }}
106-
run: cp ./dist/${{ matrix.os }}/run.exe ./dist/quit-${{ matrix.os }}.exe
106+
run: cp ./dist/run.exe ./dist/quit-${{ matrix.os }}.exe
107107

108108
#- name: Prepare Deployment
109109
# run: |

0 commit comments

Comments
 (0)