fix(cli): use --tag for langgraph deploy (#7148)

langgraph deploy should use the `--tag/-t` instead of `--image-tag`.
This matches langgraph build
This commit is contained in:
hari-dhanushkodi
2026-03-12 15:58:08 -07:00
committed by GitHub
parent 93a0dfec08
commit 16ab8544b2
+7 -1
View File
@@ -721,7 +721,13 @@ def _deploy_base_options(
OPT_VERBOSE,
OPT_HOST_URL,
click.option("--image-name", hidden=True),
click.option("--image-tag", default="latest", hidden=True),
click.option(
"--tag",
"-t",
default="latest",
show_default=True,
help="Tag to use for the pushed deployment image.",
),
click.option(
"--config",
"-c",