Skip to content

bot release

This command sets the release version for a robot in the server. This means that when the BotCity Runner fetches your code, this is the version that will be checked out for execution.

./BotCLI bot release [arguments]

Tip

Only bots marked as release can be linked to an automation process.

What are the arguments?

Argument Required Description
-version,
--v
Yes The version identifier of the robot.
-botId,
--bid
Yes The ID of the robot.

Examples

Release version 1.1 of the bot with the Id MyBot.

./BotCLI bot release -version 1.1 -botId "MyBot"

Downgrade the release version of MyBot back to 1.0.

./BotCLI bot release -version 1.0 -botId "MyBot"