Skip to content

Commit 3b241d7

Browse files
Fix post-build in MacOS and Windows
1 parent c156415 commit 3b241d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release_flow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
CMD_BUILD: >
5050
pyinstaller -F codecov_cli/main.py &&
5151
cd dist/ &&
52-
zip -r9 codecovcli_macos_${{github.ref_name}} main.app/
52+
zip -r9 codecovcli_macos_${{github.ref_name}} main
5353
OUT_FILE_NAME: codecovcli_macos_${{github.ref_name}}.zip
5454
ASSET_MIME: application/zip
5555
- os: ubuntu-latest
@@ -63,7 +63,7 @@ jobs:
6363
TARGET: windows
6464
CMD_BUILD: >
6565
pyinstaller -F codecov_cli/main.py &&
66-
cp ./dist/main.exe ./dist/codecovcli_windows_${{github.ref_name}}.exe
66+
cp ./dist/main ./dist/codecovcli_windows_${{github.ref_name}}.exe
6767
OUT_FILE_NAME: codecovcli_windows_${{github.ref_name}}.exe
6868
ASSET_MIME: application/vnd.microsoft.portable-executable
6969
steps:

0 commit comments

Comments
 (0)