From a99bbf5bb2616b493e4ae3e334497b2c96895c35 Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Thu, 21 Dec 2023 09:52:48 -0500 Subject: [PATCH] Hardcode Theia version for 1.43 community release Signed-off-by: Timothy Johnson --- ze/theia-slim/getTheiaVersion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ze/theia-slim/getTheiaVersion.js b/ze/theia-slim/getTheiaVersion.js index c142c48..2809a2c 100644 --- a/ze/theia-slim/getTheiaVersion.js +++ b/ze/theia-slim/getTheiaVersion.js @@ -29,7 +29,7 @@ async function getTheiaReleases() { if (process.argv[2] == null || process.argv[2] === "latest") { // "latest" tag (default) = latest community release of Theia const release = (await getTheiaReleases()).find(obj => obj.body.includes("community release")); - theiaVersion = release.tag_name.slice(1); + theiaVersion = "1.43.1"; // release.tag_name.slice(1); dockerTags.push(...expandImageTag("latest"), ...expandImageTag(theiaVersion.slice(0, theiaVersion.lastIndexOf(".")))); } else if (process.argv[2] === "next") {