Skip to content

Commit 8f99a42

Browse files
committed
Update naming of releases
1 parent 1e9352f commit 8f99a42

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/publish_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Build binary
3434
run: |
35-
pyinstaller gitmastery.spec
35+
pyinstaller --onefile --name gitmastery-linux main.py
3636
3737
- name: Create GitHub Release
3838
uses: softprops/action-gh-release@v2

.github/workflows/publish_macos.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232
3333
- name: Build binary
3434
run: |
35-
pyinstaller gitmastery.spec
36-
ls -lh dist/
35+
pyinstaller --onefile --name gitmastery main.py
3736
3837
- name: Generate SHA256
3938
id: checksum

.github/workflows/publish_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Build binary
3434
run: |
35-
pyinstaller gitmastery.spec
35+
pyinstaller --onefile --name gitmastery main.py
3636
3737
- name: Create GitHub Release
3838
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)