Integrate SP auctions for app deployment #2

Merged
nabarun merged 42 commits from ng-integrate-auction into main 2024-10-18 12:37:01 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 82dab8ce21 - Show all commits

View File

@ -49,7 +49,7 @@ export class Project {
@Column('varchar', { nullable: true })
auctionId?: string | null;
@Column('varchar', { nullable: true })
@Column({ type: 'simple-array', nullable: true })
deployerLrn?: string[] | null;
// TODO: Compute template & framework in import repository

View File

@ -718,7 +718,7 @@ export class Service {
const applicationRecordId = record.id;
const applicationRecordData = record.attributes;
for (const deployer in deployerLrns) {
for (const deployer of deployerLrns) {
// Create deployment with prod branch and latest commit
const deploymentData = {
project,