File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,10 @@ jobs:
7777 - os : macos-latest
7878 TARGET : macos
7979 CMD_BUILD : >
80- pwd
81- cd ./codecov-cli
80+ cd ./codecov-cli &&
8281 uv run pyinstaller --target-arch universal2 -F ./codecov_cli/main.py &&
8382 mv ./dist/main ./dist/codecovcli_macos &&
84- cd ../prevent-cli
83+ cd ../prevent-cli &&
8584 uv run pyinstaller --target-arch universal2 -F ./src/prevent_cli/main.py &&
8685 mv ./dist/main ./dist/sentry-prevent-cli_macos
8786 OUT_FILE_SUFFIX : _macos
@@ -90,10 +89,10 @@ jobs:
9089 - os : windows-latest
9190 TARGET : windows
9291 CMD_BUILD : >
93- Set-Location .\codecov-cli
92+ Set-Location .\codecov-cli &&
9493 uv run pyinstaller -F .\codecov_cli\main.py &&
9594 Move-Item -Path ".\dist\main.exe" -Destination ".\dist\codecovcli_windows.exe" &&
96- Set-Location ..\prevent-cli
95+ Set-Location ..\prevent-cli &&
9796 uv run pyinstaller -F .\src\prevent_cli\main.py &&
9897 Move-Item -Path ".\dist\main.exe" -Destination ".\dist\sentry-prevent-cli_windows.exe"
9998 OUT_FILE_SUFFIX : _windows.exe
You can’t perform that action at this time.
0 commit comments