Merge branch 'v2.3.3' of github.com:coollabsio/coolify into v2.3.3

This commit is contained in:
Andras Bacsai 2022-04-05 10:36:12 +02:00
commit 4fe919f2ea

View File

@ -50,6 +50,11 @@ async function main() {
}
});
}
// Update stucked builds
await prisma.build.updateMany({
where: { status: 'running' },
data: { status: 'success' }
});
}
main()
.catch((e) => {