From c5dcd65f7c7cba93c785a365536fdd4e12eac1f7 Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Thu, 20 Jun 2024 18:37:11 -0400 Subject: [PATCH] Hardcode Theia version for 1.49 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..51b7062 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.49.1"; // release.tag_name.slice(1); dockerTags.push(...expandImageTag("latest"), ...expandImageTag(theiaVersion.slice(0, theiaVersion.lastIndexOf(".")))); } else if (process.argv[2] === "next") {