20 lines
580 B
Text
20 lines
580 B
Text
|
|
let { make_command, .. } = import "schemas/commands_registry/defaults.ncl" in
|
||
|
|
|
||
|
|
[
|
||
|
|
make_command {
|
||
|
|
command = "runners",
|
||
|
|
requires_args = true,
|
||
|
|
uses_cache = false,
|
||
|
|
help_category = "build",
|
||
|
|
description = "Ephemeral build runners — list, status, kill, gc (hcloud-backed)",
|
||
|
|
},
|
||
|
|
make_command {
|
||
|
|
command = "registry",
|
||
|
|
aliases = ["reg"],
|
||
|
|
requires_args = true,
|
||
|
|
uses_cache = false,
|
||
|
|
help_category = "build",
|
||
|
|
description = "OCI registry — ls, tags, manifest, rm (crane client against registry.ontoref.dev)",
|
||
|
|
},
|
||
|
|
]
|