diff --git a/release/dist/index.js b/release/dist/index.js index de85565..9b60441 100644 --- a/release/dist/index.js +++ b/release/dist/index.js @@ -33286,8 +33286,8 @@ async function run() { async function getNewestRelease(releases) { const initialVersion = _actions_core__WEBPACK_IMPORTED_MODULE_0__.getInput("initial-version"); - const semVerParser = ([major, minor, patch]) => { - return version.replace("v", "").split(".").map(parseFloat); + const semVerParser = (version) => { + return version.replace("v", "").split(".").map(parseInt); }; const isSemVerGreater = (a, b) => {