Hi,
We have a fairly complex setup in netlify that is helping us manage the transition from an old app to a new one. We are heavily using the branch deploys feature to enable this.
Basically our git repo is connected to multiple netlify sites, which support different environments on our backend platform. e.g. one for staging, one for production etc
In the repo, we have our main branch, which is configured as the ‘production’ deploy in each netlify site, and deploys the app normally, and a branch called iframe
which is configured as a branch deploy in each netlify site. (The iframe
branch renders the app in a slightly different way so that it can be consumed inside a legacy app, while we transition to the new one)
In the ‘production’ netlify site, we would like to be able to control deploys, so that we can decide when to push a feature into production. We know we can do this for merges to the main
branch by switching off auto publishing in the production site, and manually publishing new versions when we want to. However we would like to replicate this for pushes to the iframe
branch too, but it seems that netlify will just automatically build and deploy every commit and there is no ‘manual publish’ option for branch deploys specifically. Is there a way we can work around this?