We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c26f3d7 commit 5ff27fcCopy full SHA for 5ff27fc
scripts/release-all-rust-crates.sh
@@ -21,9 +21,9 @@ for PACKAGE in "${PACKAGES[@]}"; do
21
echo "Creating tag for Rust package: $PACKAGE v$VERSION"
22
git tag "${PACKAGE}-v${VERSION}"
23
git push origin "${PACKAGE}-v${VERSION}"
24
- for attempt in {1..3}; do
+ for attempt in {1..2}; do
25
echo "Attempt $attempt: Publishing $PACKAGE..."
26
cargo release publish --package "$PACKAGE" --execute --no-confirm && break || echo "Attempt $attempt failed, retrying in 20..."
27
- sleep 13
+ sleep 10
28
done
29
0 commit comments