Skip to content

Commit

Permalink
Hardcode Theia version for 1.43 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 Dec 21, 2023
1 parent dd20d36 commit a99bbf5
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.43.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 a99bbf5

Please sign in to comment.