Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ private async Task PrintDashboardUrlAsync(PipelineStepContext context)

var dashboardUrl = $"https://aspire-dashboard.ext.{domainValue}";

context.Summary.Add("🔗 Dashboard", dashboardUrl);
Comment thread
eerhardt marked this conversation as resolved.
Outdated

Comment thread
eerhardt marked this conversation as resolved.
await context.ReportingStep.CompleteAsync(
$"Dashboard available at [{dashboardUrl}]({dashboardUrl})",
CompletionState.Completed,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ private async Task PrintDashboardUrlAsync(PipelineStepContext context)
{
var dashboardUri = await DashboardUriReference.GetValueAsync(context.CancellationToken).ConfigureAwait(false);

Comment thread
eerhardt marked this conversation as resolved.
if (!string.IsNullOrEmpty(dashboardUri))
Comment thread
eerhardt marked this conversation as resolved.
{
context.Summary.Add("🔗 Dashboard", dashboardUri);
}

await context.ReportingStep.CompleteAsync(
$"Dashboard available at [{dashboardUri}]({dashboardUri})",
CompletionState.Completed,
Expand Down
Loading