From 7b14cb0ec0efca3953b0e98c7197be6cf3e293e1 Mon Sep 17 00:00:00 2001 From: komodo Date: Sat, 8 Feb 2025 23:02:55 +0000 Subject: [PATCH] [Komodo] Commit Sync: update dev.toml --- dev.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev.toml b/dev.toml index a8ec18b..a76c142 100644 --- a/dev.toml +++ b/dev.toml @@ -161,6 +161,27 @@ executions = [ ## +[[action]] +name = "publish-dev" +tags = ["dev"] +[action.config] +file_contents = """ +const VERSION = "1.17.0"; + +const builds = await komodo.read("ListBuilds", { query: { tags: ["dev"] } }); + +for (const build of builds) { + console.log(build.name); +} + +// await komodo.write("UpdateVariableValue", { +// name: "KOMODO_DEV_VERSION", +// value: VERSION, +// }); +""" + +## + [[resource_sync]] name = "dev" tags = ["dev"]