We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d58dae commit 1602510Copy full SHA for 1602510
.github/workflows/build.yml
@@ -53,6 +53,14 @@ jobs:
53
run: pip install pyinstaller .
54
- name: build executable
55
run: pyinstaller packetraven/packetraven.py --windowed --onefile
56
+ - name: rename Mac OSX executable
57
+ if: matrix.os == 'macos-latest'
58
+ shell: bash
59
+ run: mv dist/__main__ dist/packetraven
60
+ - name: rename Windows executable
61
+ if: matrix.os == 'windows-latest'
62
63
+ run: mv dist/__main__.exe dist/packetraven.exe
64
- name: Upload files to a GitHub release
65
uses: svenstaro/upload-release-action@2.2.1
66
with:
0 commit comments