Build is cancelled on master branch

Hi, I just merged my develop branch (that was succesfully built as preview) into my master branch, to trigger a production deploy.

Unfortunately the deploy is cancelled everytime I try to re-trigger the deploy:

11:00:24 AM: Build ready to start
11:00:35 AM: build-image version: 2dbd444fcdce00cf06325060a8238d5ae3e86774
11:00:35 AM: build-image tag: v3.3.7
11:00:35 AM: buildbot version: 134ec431c6a3ff76e87cc4dc34007fe13842272f
11:00:35 AM: Fetching cached dependencies
11:00:36 AM: Failed to fetch cache, continuing with build
11:00:36 AM: Starting to prepare the repo for build
11:00:36 AM: No cached dependencies found. Cloning fresh repo
11:00:36 AM: git clone https://github.com/ClockGU/clock-frontend
11:00:37 AM: Preparing Git Reference refs/heads/master
11:00:37 AM: No changes detected in base directory. Returning early from build.
11:00:37 AM: Failing build: Failed to check build content change
11:00:37 AM: failed during stage 'checking build content for changes': Canceled build due to no content change
11:00:37 AM: Finished processing build request in 2.125099824s

Logs can be found here: Netlify App

Hi, @mimischi, and welcome to the Netlify community site.

This was happening because there was a base directory of “.” set here:

That setting isn’t needed and was triggering our monorepo “build ignore” command to be used. I deleted that to make the base directory just the empty string. When that was done, the build was no longer automatically cancelled:

If there are other questions about this, please let us know.

Thank you very much! :slight_smile:

Hi, i just created a private repository on github and deploys it on netlify works fine but whenever i push some changes to the repository these changes are cancelled??
The other public repository that is also deployed whenever i pushes changes to repository it works fine and be deployed.
Any solution to this problem??

Could you try adding:

[build]
  ignore = "false"

to your netlify.toml?