We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c89973 + 9934346 commit ec68492Copy full SHA for ec68492
1 file changed
packages/server/src/services/application.ts
@@ -253,7 +253,11 @@ export const deployApplication = async ({
253
} finally {
254
// Only extract commit info for non-docker sources
255
if (application.sourceType !== "docker") {
256
- const commitInfo = await getGitCommitInfo(application);
+ const commitInfo = await getGitCommitInfo({
257
+ appName: application.appName,
258
+ type: "application",
259
+ serverId: serverId,
260
+ });
261
262
if (commitInfo) {
263
await updateDeployment(deployment.deploymentId, {
0 commit comments