[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Help](/c/help/9) # Vercel deployment canceled when using Ignored Build Step with Deploy Hooks 25 views · 1 like · 2 posts Izzysaac (@izzysaac) · 2026-02-21 I just want to be able to deploy via **web hook**. Right now I have “Don’t build anything” and I think that’s why the deploy is canceled, but I also don’t know what other option to put so that it’s only via hook the deployment    Swarnava Sengupta (@swarnava) · 2026-02-22 · ♥ 1 “Don’t build anything” will cancel all type of deployment. If you particularly want to disable git deployment, you can set following in `vercel.json` ``` { "git": { "deploymentEnabled": false } } ``` Please refer to this guide for more details - [https://vercel.com/docs/project-configuration/git-configuration#turning-off-all-automatic-deployments](https://vercel.com/docs/project-configuration/git-configuration#turning-off-all-automatic-deployments)