Initiated the action. #1

Merged
Philipp merged 28 commits from philipp-patch-1 into main 2024-05-28 23:29:17 +02:00
302 changed files with 38370 additions and 20 deletions
Showing only changes of commit f4fa3cccee - Show all commits

View File

@ -2,7 +2,7 @@ const core = require("@actions/core");
function parseVersion(str) { function parseVersion(str) {
if (typeof str != "string") { if (typeof str != "string") {
return false; throw new Error("When parsing a version number a string is expected.");
} }
var arr = str.split("."); var arr = str.split(".");