🔨 Retoques en scripts de liberación de versiones

This commit is contained in:
Manuel Cillero 2026-05-03 12:16:45 +02:00
parent 2da8bd6558
commit 516607d9c0
2 changed files with 10 additions and 2 deletions

View file

@ -130,8 +130,9 @@ if [[ -n "$(git status --porcelain -- "$CHANGELOG_FILE")" ]]; then
git add "$CHANGELOG_FILE"
echo "Staged $CHANGELOG_FILE for commit"
else
echo "Changes detected in '$CHANGELOG_FILE', but not staged (no --stage flag)"
echo "Changes not staged (no --stage flag)"
fi
else
echo "No changes in '$CHANGELOG_FILE', skipping staging"
echo "No changes in '$CHANGELOG_FILE', aborting release."
exit 1
fi