diff --git a/index.js b/index.js index f4c2794..dcde02d 100644 --- a/index.js +++ b/index.js @@ -18,6 +18,8 @@ function nodePlatformToWabtPlatform({nodePlatform, version}) { case "darwin": return semver.gte(version, "1.0.30") ? "macos-12" : "macos"; case "linux": + core.info(`Version ${version}`); + core.info(`gte ${semver.gte(version, "1.0.35")}`); return semver.gte(version, "1.0.35") ? "ubuntu-20.04" : "ubuntu"; case "win32": return "windows";