mirror of
https://github.com/cmderdev/cmder.git
synced 2026-04-15 06:44:31 +08:00
Ensure downgrades don't show up as updates
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
5
.github/workflows/vendor.yml
vendored
5
.github/workflows/vendor.yml
vendored
@@ -103,9 +103,12 @@ jobs:
|
|||||||
} elseif ($newVer.Minor -gt $oldVer.Minor) {
|
} elseif ($newVer.Minor -gt $oldVer.Minor) {
|
||||||
$changeType = "minor"
|
$changeType = "minor"
|
||||||
$emoji = "🚀"
|
$emoji = "🚀"
|
||||||
} else {
|
} elseif ($newVer -gt $oldVer) {
|
||||||
$changeType = "patch"
|
$changeType = "patch"
|
||||||
$emoji = "⬆️"
|
$emoji = "⬆️"
|
||||||
|
} else {
|
||||||
|
$changeType = "unknown"
|
||||||
|
$emoji = "🔄"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
|
|||||||
Reference in New Issue
Block a user