diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index eadc80a21..8aeffdf47 100644 --- a/apps/dokploy/pages/api/deploy/github.ts +++ b/apps/dokploy/pages/api/deploy/github.ts @@ -53,7 +53,7 @@ export default async function handler( secret: githubResult.githubWebhookSecret, }); - const verified = await webhooks.verify(JSON.stringify(githubBody), signature); + const verified = await webhooks.verify(JSON.stringify(githubBody), signature as string); if (!verified) { res.status(401).json({ message: "Unauthorized" });