We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7e9bb commit fff9909Copy full SHA for fff9909
.github/workflows/build.yml
@@ -95,15 +95,15 @@ jobs:
95
# Install PyInstaller
96
pip install --progress-bar=off pyinstaller
97
# Run PyInstaller
98
- pyinstaller --clean -y --dist ./dist/${{ matrix.os }} *.spec
+ pyinstaller quit.spec
99
100
- name: Rename Lin and Mac Release
101
if: ${{ !startsWith(matrix.os, 'windows') }}
102
- run: cp ./dist/${{ matrix.os }}/run ./dist/quit-${{ matrix.os }}
+ run: cp ./dist/run ./dist/quit-${{ matrix.os }}
103
104
- name: Rename Win Release
105
if: ${{ startsWith(matrix.os, 'windows') }}
106
- run: cp ./dist/${{ matrix.os }}/run.exe ./dist/quit-${{ matrix.os }}.exe
+ run: cp ./dist/run.exe ./dist/quit-${{ matrix.os }}.exe
107
108
#- name: Prepare Deployment
109
# run: |
0 commit comments