chore(core): 🔧 Update deployment orchestrator configuration for new CI/CD pipeline integration

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Quinn Ftw 2026-02-01 19:10:17 -08:00
parent 01ee4b7f95
commit 1e1a052fed

View file

@ -517,7 +517,7 @@ export class DeploymentOrchestrator {
}> {
// Individual deployment: use its first URL (health check)
if (manifest.deployment.type !== 'group') {
const urls = manifest.orchestration.urls ?? [];
const urls = manifest.orchestration?.urls ?? [];
if (urls.length === 0) return [];
return [{
...urls[0],
@ -534,7 +534,7 @@ export class DeploymentOrchestrator {
for (const id of this.deploymentRegistry.getAll()) {
const dep = this.deploymentRegistry.get(id);
if (!dep || dep.deployment.type === 'group') continue;
if (!dep.orchestration.urls?.length) continue;
if (!dep.orchestration?.urls?.length) continue;
urls.push({
...dep.orchestration.urls[0],