Skip to content

Commit

Permalink
Hardcode Theia version for 1.49 community release
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Jun 20, 2024
1 parent 75c9e5c commit c5dcd65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ze/theia-slim/getTheiaVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down

0 comments on commit c5dcd65

Please sign in to comment.