We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1602510 commit a2f1d0eCopy full SHA for a2f1d0e
.github/workflows/build.yml
@@ -52,15 +52,7 @@ jobs:
52
- name: install dependencies
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
+ run: pyinstaller packetraven/__main__.py --windowed --onefile --name packetraven
64
- name: Upload files to a GitHub release
65
uses: svenstaro/upload-release-action@2.2.1
66
with:
0 commit comments