How do I setup a github action to deploy to production and not preview?
Below is my current github action which does work for preview deployments. I'd like to be able to deploy from production for it.
2 Replies
You can set your production branch to something like "release" and then set
branch: release
that works, thanks!