Skip to content

Commit c78db51

Browse files
committed
remove release version from asset name
1 parent 59357e5 commit c78db51

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release_flow.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,23 @@ jobs:
5050
STATICCODECOV_LIB_PATH=$(find build/ -maxdepth 1 -type d -name 'lib.*' -print -quit | xargs -I {} sh -c "find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'") &&
5151
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
5252
cd dist/ &&
53-
zip -r9 codecovcli_macos_${{github.ref_name}}.zip main
54-
OUT_FILE_NAME: codecovcli_macos_${{github.ref_name}}.zip
53+
zip -r9 codecovcli_macos.zip main
54+
OUT_FILE_NAME: codecovcli_macos.zip
5555
ASSET_MIME: application/zip
5656
- os: ubuntu-latest
5757
TARGET: ubuntu
5858
CMD_BUILD: >
5959
STATICCODECOV_LIB_PATH=$(find build/ -maxdepth 1 -type d -name 'lib.*' -print -quit | xargs -I {} sh -c "find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'") &&
6060
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
61-
cp ./dist/main ./dist/codecovcli_linux_${{github.ref_name}}
62-
OUT_FILE_NAME: codecovcli_linux_${{github.ref_name}}
61+
cp ./dist/main ./dist/codecovcli_linux
62+
OUT_FILE_NAME: codecovcli_linux
6363
ASSET_MIME: application/octet-stream
6464
# - os: windows-latest
6565
# TARGET: windows
6666
# CMD_BUILD: >
6767
# pyinstaller --debug=imports -F codecov_cli/main.py &&
68-
# cp ./dist/main.exe ./dist/codecovcli_windows_${{github.ref_name}}.exe
69-
# OUT_FILE_NAME: codecovcli_windows_${{github.ref_name}}.exe
68+
# cp ./dist/main.exe ./dist/codecovcli_windows.exe
69+
# OUT_FILE_NAME: codecovcli_windows.exe
7070
# ASSET_MIME: application/vnd.microsoft.portable-executable
7171
steps:
7272
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)