Automatic deployment with Local > Production

Hi!

I have a deployment street with Docker. When I push my changes to the main branch the website will be deployed in a docker container. The only question is how can I setup this street with October?

Would love to develop my own site and client sites locally with a docker setup, push the changes to main and have them by my backend system deployed to the website. Is this possible and if so, how?

Hi @gitdevries

One way to achieve this is to use GitHub actions. You can include a step that connects to your server via SSH and performs a bash script to update the server (or container).

A quick google search found this example that might be useful: Laravel Push deploy Github actions example ยท GitHub