Vercel deployment no longer updates with main branch - node.js

I have a node.js website that uses Vercel to deploy, and would automatically deploy when I updated the main branch on Github. Everything was working fine until recently and I have no idea what has changed. Except now, even if I try to make a new branch the production branch, Vercel doesn't seem to be updating with those changes either. All my changes are viewable in local development and through the preview button on Vercels site itself. Has anyone run into a non-responsive Vercel deployment tool before?

Related

my application deploys on netlify when i build it locally but it doesnt work when i deploy it from github

Okay so i recently finished my portfolio and i wanted to host it on netlify through github but it failed.
Their docs and build log are so confusing that i do not know how to trouble shoot the problem. However, when i ran
npm run build
locally on my system and then i dragged it onto netlify, it worked.
I'm not saying i cant just keep doing this for all my websites but i would like to know any potential reason as to why it didn't work when i tried it from github.
For context, the current node version is 16 and the one i am using on my system is version 14. I'm not sure whether that is enough to affect the build from github but i just thought i would mention it. if However, that is a reason as to why it isn't deploying from github then how do i fix it?
Is it throwing errors when you are deploying your site from GitHub or what? I am sure you have created a GitHub repository and logged/signed into netlify with GitHub (and authorize it). And from there(netlify's dashboard) to Team overview > Add new site > Import an existing > GitHub (it will again ask for authorization) > Pick a repository > and > Deploy site (with default settings).
This should pretty much deploy your website without any troubles. Now you can also try commit to your GitHub repository and it would automatically trigger deploy of your website on netilfy (what you call a continuous deployment).

Should I deploy my Nuxt app directly to Google App Engine or should I use Gitlab CI/CD where my code is present in repository?

I want to deploy my nuxt app to App Engine. And I am confused which method I should go for.
I have tried deploying directly using gcloud app deploy command. It works. But when I make changes and deploy again it makes another version of my project in app engine. And I guess all the files are uploaded again instead of files modified or newly created. Correct me if I am wrong about this.
Or should I go for Gitlab CI and link my master branch with app engine so whenever I make changes in Gitlab the changes gets automatically reflected.
I want to know if Gitlab also makes new version of app whenever it is updated.
Both alternatives will be creating a new version.
This allows that the changes can be rolled back in an easier way in case something breaks your application.

Heroku shows no Vue.js changes with laravel

well I have a problem with heroku (PasS), I am launching my first project with Laravel and I'm currently making constant changes,
I understand that every change I make in development I have to use git and push heroku to send to production and also to see the changes in vue.js I have to execute a command in heroku bash, now my problem is because the changes I currently make it no longer works it is not seen in production, constantly made many commits it will be for that or for the cache I do not know the truth I hope a response please.
Sorry I do not understand you well or maybe it is because of my lack of ignorance since it is my first project that I launch to heroku, However I will detail my problem currently I have two branches: master and production, currently I always work with the master branch and also that's where I push the changes to heroku
Here I show you a message from the list of my commits in the master branch:
in conclusion :
I have created a component in vue.js and when I deployed the application to heroku, that component is not shown and as I said in heroku bash it executed "npm run dev" to show the changes in the front-end, previously it showed the changes it made but over time I stop working
And as I say I think it is for making many commits

auto deploy issues on heroku

I'm having issues setting up auto deploy with my github node.js repo on heroku. On the heroku side, it says "Automatic Deploys from master are enabled" and there are no restrictions on my repo for auto deploy on github. I am able to do a manual deploy fine but wanted to see if anyone has run into this problem as well and have a solution. Thanks!
This seemed to be an issue with GitHub as I was having the exact same issue earlier today. I had my heroku app watching my master branch, so whenever a branch was merged into master, a deployment build would automatically kick off. This all of the sudden wasnt happening as of today, however the manual deploys worked as expected as you mentioned.
Seen here https://blog.github.com/ github has addressed some issues in deployment workflows that they have had issues with during today and yesterday.

git deploy to an Azure website has stopped working

I've been successfully using Git deploy (via Kudu) to a couple of Azure websites (e.g., beta/prod) for several months, and it's worked quite well. Starting today, I noticed that when I push to the appropriate respective git branch, my Azure websites will supposedly deploy - i.e., the deploy kicks off, everything builds, all my tests run, and the Azure management portal swears up and down that it's deployed my website - but ... nothing happens. My websites don't change. (Beta and prod pull from different branches of the same git repo, but no matter which I push to, none of the changes included in the latest push show up on either website.)
There are no errors or any other indication of a problem in the logs. The Azure portal detects the git pushes, runs the deployments, and swears that they've happened successfully. But the changes - some very simple ones, i.e., text on a certain page - simply aren't there.
This is the sort of thing that I'd normally contact Azure support for, but my subscription doesn't include tech support :-(. The Azure site recommends asking here on SO, and hence my post.
Any suggestions for further troubleshooting this?
Well, I don't know what was triggering the problem, but resetting the website - by adding a bogus key/value pair to the configuration, and saving it - triggers the website(s) to pick up the changes. Apparently the underlying issue is that the Kudu deploy doesn't seem to be triggering the website to reset itself. I'll add more details in the future if I run into the problem again.
[Edit 2013-10-15 - Today, deploys seem to be working normally again. My guess is that it was some sort of transient Azure bug that's now fixed.]

Resources