Skip to content

Commit

Permalink
feat(deployments): add version display in deployment details and refr…
Browse files Browse the repository at this point in the history
…esh schema (#162)

Prints the deployment version when describing a deployment.
  • Loading branch information
steebchen authored Jan 30, 2025
1 parent 603788c commit 108d363
Show file tree
Hide file tree
Showing 2 changed files with 498 additions and 24 deletions.
1 change: 1 addition & 0 deletions cli/src/command/deployments/describe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ impl DescribeArgs {

if let Some(deployment) = data.deployment {
println!("Project: {}", deployment.project);
println!("Version: {}", deployment.version);
println!(
"Branch: {}",
deployment.branch.unwrap_or_else(|| String::from("Default"))
Expand Down
Loading

0 comments on commit 108d363

Please sign in to comment.