Contact Details
No response
Bug description
Problem
TriggerAndMonitorWorkflows in developer-cli/Commands/DeployCommand.cs starts only three workflows:
StartGithubWorkflow("Cloud Infrastructure - Deployment", "cloud-infrastructure.yml");
StartGithubWorkflow("Account - Build and Deploy", "account.yml");
StartGithubWorkflow("AppGateway - Build and Deploy", "app-gateway.yml");
main.yml is missing, so the Main self-contained system is never deployed by developer-cli deploy. Account and AppGateway deploy; Main stays on the
placeholder image.
Fix
Add the Main workflow (it already has workflow_dispatch, like Account):
StartGithubWorkflow("Main - Build and Deploy", "main.yml");
Workaround
gh workflow run main.yml --ref main
Severity
Low
Is this bug security related?
Code of Conduct
Contact Details
No response
Bug description
Problem
TriggerAndMonitorWorkflowsindeveloper-cli/Commands/DeployCommand.csstarts only three workflows:main.ymlis missing, so the Main self-contained system is never deployed bydeveloper-cli deploy. Account and AppGateway deploy; Main stays on theplaceholder image.
Fix
Add the Main workflow (it already has
workflow_dispatch, like Account):Workaround
gh workflow run main.yml --ref mainSeverity
Low
Is this bug security related?
Code of Conduct