We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c875c8 commit aa95673Copy full SHA for aa95673
1 file changed
.github/workflows/cd-langchain.yml
@@ -45,15 +45,15 @@ jobs:
45
case "$STATUS" in
46
completed:success)
47
echo "cd workflow succeeded — polling PyPI until uipath-llm-client==$CORE_VERSION is available..."
48
- for j in $(seq 1 30); do
+ for j in $(seq 1 60); do
49
if uv pip index versions uipath-llm-client 2>/dev/null | grep -q "$CORE_VERSION"; then
50
echo "uipath-llm-client==$CORE_VERSION is available on PyPI."
51
exit 0
52
fi
53
- echo " Not yet available, retrying in 30s ($j/30)..."
+ echo " Not yet available, retrying in 30s ($j/60)..."
54
sleep 30
55
done
56
- echo "::error::uipath-llm-client==$CORE_VERSION never appeared on PyPI (15 min)"
+ echo "::error::uipath-llm-client==$CORE_VERSION never appeared on PyPI (30 min)"
57
exit 1
58
;;
59
completed:*)
0 commit comments