Skip to content

Commit fa56eca

Browse files
committed
fix: match 'already exists' message from crates.io
1 parent 137168d commit fa56eca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ jobs:
355355
if [ $EXIT_CODE -eq 0 ]; then
356356
echo "✓ $crate published successfully"
357357
SUCCESS="$SUCCESS $crate"
358-
elif echo "$OUTPUT" | grep -q "already uploaded"; then
358+
elif echo "$OUTPUT" | grep -qE "already uploaded|already exists"; then
359359
echo "⊘ $crate already published, skipping"
360360
SKIPPED="$SKIPPED $crate"
361361
else

0 commit comments

Comments
 (0)