Skip to content
Merged
Changes from all 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
4 changes: 2 additions & 2 deletions deployment/cake/aspire-tasks.cake
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ public class AspireProcessor : ProcessorBase
{
BuildContext.CakeContext.Information("Logging in to Azure");

RunAzd($"auth login --tenant-id {aspireContext.AzureTenantId} --client-id {aspireContext.AzureClientId} --client-secret {aspireContext.AzureClientSecret}");
RunAzd($"auth login --tenant-id {aspireContext.AzureTenantId} --client-id {aspireContext.AzureClientId} --client-secret {aspireContext.AzureClientSecret} --no-prompt");

// Note: got weird errors when running provision and deploy manually, so using up instead

BuildContext.CakeContext.Information("Deploying to Azure");

RunAzd($"up -e {environmentName}");
RunAzd($"up -e {environmentName} --no-prompt");

//BuildContext.CakeContext.Information("Provisioning infrastructure for Aspire project '{0}'", aspireProject);

Expand Down