|
Hi, I've a project setup with a public GitHub repo: https://github.com/kyr0/turbo-hybrid-astro-on-vercel When I push, Vercel triggers deploys, but only occasionally. It often "hangs" behind and doesn't recognize the most recent comments. The Vercel App in GitHub is configured correctly and I already re-connected the integration to double-check. I also changed the branch name forth and back to main to double-check and started some Deploys manually, but when I do, Vercel still deploys from the old commit, not from the most recent one. Nothing helps, the last commit Vercel currently "sees" remains This behaviour doesn't make sense to me. It looks like a background sync process is too slow or some cache invalidation doesn't work well. I can manually deploy as often as I want - deploys works, but it always picks the same old commit from the Here is the views from the Vercel UI: It really doesn't want to pick the latest commits. Do you have any ideas? Thanks and best! |
Replies: 4 comments 4 replies
|
Hi @kyr0! My first thought is you may have configured Ignored Build Step at some point, maybe with something like |
|
@amyegan Thank you, Exactly! Unfortunately, I didn't see your answer and tried a few more times to debug the issue. One thing I didn't notice before was this beautiful drop-down hiding the cancelled deployments: Now with that one enabled, it's reveals, what happened (after clicking inspect deployment): For now I disabled the ignore build step by configuration: |
|
@kyr0 glad you got things building! I wanted to add a little more info about Then, for each build on Vercel, it checks to see if If nothing is found - the build is ignored because turbo-ignore believe that the changes are not relevant to the app. For example, any changes in Hopefully that's helpful! As an aside, we're working to make the docs here better so this is less "magic" and more understandable moving forward! |
|
Quick solution, if someone is having problem with latest commit: https://vercel.com/changelog/manually-create-deployments-by-commit-or-branch-in-the-dashboard Hope it will help someone :) |






Hi @kyr0! My first thought is you may have configured Ignored Build Step at some point, maybe with something like
turbo-ignorewhich could interfere with builds.