Hello, I was wondering if I could use github releases to define my main production deployments? Like the lastest github release (each commit is tagged with the version number so if you have v0.3.19 and create a github release, the exact main commit would have v0.3.19 so you can push to main after that but that exact commit was 0.3.19 and nothing after can override that).
I want to use this latest release for my https://xlate.ai site’s production environment, and then i want https://dev.xlate.ai to be my main branch. So every merge to main is an update to the dev.xlate.ai website, however production, aka, xlate.ai without the dev. prefix would only be updated if i were to create another github release.
Is this possible to do in vercel? Or would I have to write a custom deploy workflow in github?