Reputation: 57
I have a nodejs app on Google cloud app engine which I cloned from my GitHub repo, after some time i added some files to my GitHub repo. How I update my node app on Google cloud? Do I have to delete it and clone again or can just add the updated files?
Upvotes: 0
Views: 73
Reputation: 59148
You can create a build trigger.
A build trigger instructs Container Builder to automatically build your image whenever there are changes pushed to the build source. You can set a build trigger to re-build your images on any changes to the source repository, or only changes that match certain criteria.
Currently build triggers support
More details about build triggers can be found here.
Upvotes: 1