I have two different Vercel projects that are both connected to the same monorepo. The two relevant folders (which are also the Root Directories for each project) are:
./site
./kitchen
For both of them I have configured Ignored Build Step
> Only build if there are changes in a folder
, with the respective commands:
- git diff HEAD^ HEAD --quiet – ./site
- git diff HEAD^ HEAD --quiet – ./kitchen
When I commit changes to either folder both projects rebuild. I would expect that only the relevant project would build.
My repo is not currently set up with Workspace, so I can’t use the Skip deployments when there are no changes to the root directory or its dependencies.
feature.
Any help would be much appreciated!
Thanks,
Alex