Skip to content

Commit 1512d91

Browse files
fix: initiate release after deprecations (#1544)
Signed-off-by: Scott Schreckengaust <[email protected]>
1 parent 5cf3b2c commit 1512d91

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release-initiate-branch.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)