App is not being correctly filtered for deployment when using turbo-ignore
Unanswered
Cape lion posted this in #help-forum
Cape lionOP
I have a monorepo with two nextjs apps (lets name them "foo", and "bar") and some other packages that those apps depends on, like eslint configs, etc. Foo and bar don't depend on each other, but when I make any changes to foo, bar is also always getting deployed, even though I use
On the logs, I can see the following suspicious message:
If I go to the
Am I doing something wrong?
npx turbo-ignore as an Ignored Build Step.On the logs, I can see the following suspicious message:
Running build in San Francisco, USA (West) – sfo1
Cloning github.com/user/repo (Branch: main, Commit: 62e7b97)
Cloning completed: 913.675ms
Running "npx turbo-ignore"
npm WARN exec The following package was not found and will be installed: turbo-ignore@1.10.13
≫ Using Turborepo to determine if this project is affected by the commit...
≫ Inferred "foo" as workspace from "package.json"
≫ Using "build" as the task as it was unspecified
≫ No previous deployments found for "foo" on branch "main".
✓ Proceeding with deployment
Restored build cache
Running "vercel build"No previous deployments found for "foo" on branch "main".This line is weird because this app was already deployed hundreds of times, but I always get this message when deploying again
If I go to the
Run summary section, the only difference is the scm.sha field, as you can see on the image attachedAm I doing something wrong?