@@ -95,7 +95,7 @@ private async Task<bool> TryValidateAzureCliLoginAsync(CancellationToken cancell
9595 return true ;
9696 }
9797
98- var validationStep = await activityReporter . CreateStepAsync ( "Validating Azure CLI authentication " , cancellationToken ) . ConfigureAwait ( false ) ;
98+ var validationStep = await activityReporter . CreateStepAsync ( "validate-auth " , cancellationToken ) . ConfigureAwait ( false ) ;
9999 await using ( validationStep . ConfigureAwait ( false ) )
100100 {
101101 try
@@ -126,7 +126,7 @@ private async Task<bool> TryProvisionAzureBicepResources(List<AzureBicepResource
126126 return true ;
127127 }
128128
129- var deployingStep = await activityReporter . CreateStepAsync ( $ "Deploying { bicepResources . Count } Azure resource(s) ", cancellationToken ) . ConfigureAwait ( false ) ;
129+ var deployingStep = await activityReporter . CreateStepAsync ( "deploy-resources ", cancellationToken ) . ConfigureAwait ( false ) ;
130130 await using ( deployingStep . ConfigureAwait ( false ) )
131131 {
132132 try
@@ -254,7 +254,7 @@ private async Task<bool> TryDeployComputeResources(DistributedApplicationModel m
254254 return true ;
255255 }
256256
257- var computeStep = await activityReporter . CreateStepAsync ( "Deploying compute resources " , cancellationToken ) . ConfigureAwait ( false ) ;
257+ var computeStep = await activityReporter . CreateStepAsync ( "deploy- compute" , cancellationToken ) . ConfigureAwait ( false ) ;
258258 await using ( computeStep . ConfigureAwait ( false ) )
259259 {
260260 try
@@ -346,7 +346,7 @@ private async Task LoginToAllRegistries(IEnumerable<IContainerRegistry> registri
346346 return ;
347347 }
348348
349- var loginStep = await activityReporter . CreateStepAsync ( "Authenticating to container registries" , cancellationToken ) . ConfigureAwait ( false ) ;
349+ var loginStep = await activityReporter . CreateStepAsync ( "auth- registries" , cancellationToken ) . ConfigureAwait ( false ) ;
350350 await using ( loginStep . ConfigureAwait ( false ) )
351351 {
352352 try
@@ -414,7 +414,7 @@ private async Task AuthenticateToAcr(IPublishingStep parentStep, string registry
414414 private async Task PushImagesToAllRegistries ( Dictionary < IContainerRegistry , List < IResource > > resourcesByRegistry , CancellationToken cancellationToken )
415415 {
416416 var totalImageCount = resourcesByRegistry . Values . SelectMany ( resources => resources ) . Count ( ) ;
417- var pushStep = await activityReporter . CreateStepAsync ( $ "Pushing { totalImageCount } images to container registries ", cancellationToken ) . ConfigureAwait ( false ) ;
417+ var pushStep = await activityReporter . CreateStepAsync ( "push- images", cancellationToken ) . ConfigureAwait ( false ) ;
418418 await using ( pushStep . ConfigureAwait ( false ) )
419419 {
420420 try
0 commit comments