Release v1.0.33
Some checks failed
Release Build / create-release (push) Successful in 6m37s
Release Build / create-docker-image (push) Failing after 37s
Release Build / update-to-release-branch (push) Has been skipped

This commit is contained in:
2025-07-28 17:00:47 +06:00
parent da3538051e
commit 6f10caa69d
2 changed files with 3 additions and 4 deletions

View File

@@ -36,8 +36,8 @@ get_version_interactive() {
echo "📝 Подтверждение:"
echo " Текущая версия: $CURRENT_VERSION"
echo " Новая версия: $VERSION"
if [ $CURRENT_VERSION == $VERSION ]; then
echo "⚠️ Новая версия совпадает с текущей. Возможно будет обновлен тег ..."
if [ "$CURRENT_VERSION" == "$VERSION" ]; then
echo "⚠️ Новая версия совпадает с текущей. Возможно будет обновлен тег ..."
fi
echo ""
read -r -p "Продолжить? (y/N): " CONFIRM