chore: publish con --no-verify (evita disco lleno por recompilar cada crate)

This commit is contained in:
Sergio
2026-06-19 03:00:14 +00:00
parent 38d3dddaea
commit 5ae7c73703
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ while read -r c; do
[ -z "$c" ] && continue
while true; do
echo ">>> publicando $c"
if out=$(cargo publish -p "$c" 2>&1); then echo " ok"; break; fi
if out=$(cargo publish -p "$c" --no-verify 2>&1); then echo " ok"; break; fi
if echo "$out" | grep -qiE "already (been )?uploaded|already exists|is already"; then
echo " (ya estaba, sigo)"; break
elif echo "$out" | grep -qiE "429|Too Many Requests|rate.?limit"; then