File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -184,8 +184,10 @@ jobs:
184184 set -euo pipefail
185185 echo "${{ toJson(needs.look-for-changes.outputs.changed-directories) }}" | \
186186 jq -r '.[]' | \
187- xargs -I{} \
188- bash -c 'uv run --script .github/workflows/release.py bump-package --directory="$SRC_DIRECTORY/{}" && if [ -f "$SRC_DIRECTORY/{}/pyproject.toml" ]; then uv sync --directory="$SRC_DIRECTORY/{}";fi;' bash
187+ xargs -I{} -L 1 -S 1024 \
188+ bash -c '(uv run --script .github/workflows/release.py bump-package --directory="$SRC_DIRECTORY/{}" && if [ -f "$SRC_DIRECTORY/{}/pyproject.toml" ]; then uv sync --directory="$SRC_DIRECTORY/{}";fi;) || echo "
189+ NOTE: skipped $SRC_DIRECTORY/{}; either deleted or not a Python project...
190+ "' bash
189191 echo "::debug::Version bumps completed"
190192 - name : Configure Git and GPG securely
191193 env :
You can’t perform that action at this time.
0 commit comments