[Komodo] Commit Sync: update dev.toml

This commit is contained in:
komodo
2025-02-08 23:36:25 +00:00
parent 915c3cd1ff
commit dcf11dd27f

View File

@ -166,21 +166,22 @@ name = "publish-dev"
tags = ["dev"] tags = ["dev"]
[action.config] [action.config]
file_contents = """ file_contents = """
const VERSION = "1.17.0";
const BRANCH = "1.17.0"; const BRANCH = "1.17.0";
const VERSION = "1.17.0";
const TAG = "dev1";
await komodo.write("UpdateVariableValue", { await komodo.write("UpdateVariableValue", {
name: "KOMODO_DEV_VERSION", name: "KOMODO_DEV_VERSION",
value: VERSION, value: VERSION + "-" + "TAG",
}); });
console.log("Updated KOMODO_DEV_VERSION to", VERSION); console.log("Updated KOMODO_DEV_VERSION to", VERSION + "-" + "TAG");
const builds = await komodo.read("ListBuilds", { query: { tags: ["dev"] } }); const builds = await komodo.read("ListBuilds", { query: { tags: ["dev"] } });
for (const build of builds) { for (const build of builds) {
await komodo.write("UpdateBuild", { await komodo.write("UpdateBuild", {
id: build.id, id: build.id,
config: { version: VERSION as any, branch: BRANCH }, config: { version: VERSION as any, branch: BRANCH, image_tag: TAG },
}); });
console.log("Updated", build.name); console.log("Updated", build.name);
} }