Hi All,
I am new to Glitch. I have deployed an express project via glitch. I would like to know that when my master branch is updated, will it do a automatic deployment. If not how can I configure it in GitHub repository?
Thank you.
Hi All,
I am new to Glitch. I have deployed an express project via glitch. I would like to know that when my master branch is updated, will it do a automatic deployment. If not how can I configure it in GitHub repository?
Thank you.
This wouldn’t exactly solve your problem, but you could set up a cronjob on your container to run a script like:
git add .
git commit -m "Auto Update"
git push -u origin master
Just note that you would have to have SSH keys set up to do this.
Or this could work.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.