Skip to content

Commit 0556cd6

Browse files
Fix issue missing tree_sitter_python (#109)
1 parent 37830f2 commit 0556cd6

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
@@ -48,7 +48,7 @@ jobs:
4848
TARGET: macos
4949
CMD_BUILD: >
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|^./||'") &&
51-
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:staticcodecov_languages --add-data languages:languages --paths build --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
51+
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
5252
cd dist/ &&
5353
zip -r9 codecovcli_macos_${{github.ref_name}}.zip main
5454
OUT_FILE_NAME: codecovcli_macos_${{github.ref_name}}.zip
@@ -57,7 +57,7 @@ jobs:
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|^./||'") &&
60-
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:staticcodecov_languages --add-data languages:languages --paths build --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
60+
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
6161
cp ./dist/main ./dist/codecovcli_linux_${{github.ref_name}}
6262
OUT_FILE_NAME: codecovcli_linux_${{github.ref_name}}
6363
ASSET_MIME: application/octet-stream

0 commit comments

Comments
 (0)