Skip to content

Commit 1ce1b37

Browse files
fix(ci): wrap long yamllint line in Docker PyPI wait
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent e646a32 commit 1ce1b37

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/publish-docker.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,14 @@ jobs:
8585
wheel_ok=1
8686
fi
8787
if [ "$json_ok" -eq 1 ] && [ "$simple_ok" -eq 1 ] && [ "$wheel_ok" -eq 1 ]; then
88-
echo "PyPI JSON + simple index + wheel URL have ${PACKAGE}==${VERSION}"
88+
echo "PyPI ready for ${PACKAGE}==${VERSION} (json+simple+wheel)"
8989
exit 0
9090
fi
91-
echo "::warning::PyPI not ready for ${PACKAGE}==${VERSION} (json=${json_ok} simple=${simple_ok} wheel=${wheel_ok}; attempt ${attempt}/${attempts}); retrying in ${delay}s"
91+
echo "::warning::PyPI not ready for ${PACKAGE}==${VERSION}"
92+
echo "::warning::json=${json_ok} simple=${simple_ok} wheel=${wheel_ok} attempt=${attempt}/${attempts}; sleep ${delay}s"
9293
sleep "$delay"
9394
done
94-
echo "::error::Timed out waiting for ${PACKAGE}==${VERSION} on PyPI (JSON + simple index + wheel)"
95+
echo "::error::Timed out waiting for ${PACKAGE}==${VERSION} on PyPI"
9596
exit 1
9697
9798
- name: Set up QEMU

0 commit comments

Comments
 (0)