DEV Community

Discussion on: Automating CI with a Cloud Platform and GitHub Integration

Collapse
 
johnatbennettstrategy profile image
John Bennett

Hi Javier,

Great question. Review apps can only be triggered by branches, not by tags. What that means is that if they build a pipeline that orchestrates branches and tags to work together, they can have a tagged branch be auto-deployed to a review app and it can work with whatever their current tag + release system is. But that's a bit of a complex solution, so the pragmatic answer is probably closer to: you can use review apps to test things before you merge them, but you'll still need to tag them for prod if deployments are based on GitHub's releases system.

Hope this answer is helpful.