Merge branch 'main' into canary

This commit is contained in:
Mauricio Siu 2026-08-06 00:12:08 -06:00 committed by GitHub
commit 5dd2b5beec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.30.0",
"version": "v0.29.14",
"private": true,
"license": "Apache-2.0",
"type": "module",

View File

@ -118,7 +118,8 @@ export const runCommand = async (scheduleId: string) => {
"This feature is not available in the cloud version.",
);
writeStream.end();
return { ...deployment, status: "running" as const };
await updateDeploymentStatus(deployment.deploymentId, "error");
return { ...deployment, status: "error" as const };
}
writeStream.write(
`docker exec ${containerId} ${shellType} -c ${command}\n`,