Hello! 👋
I was wondering... Given that the recommended approach is to have a multiplatform project with different targets in the same repo, how do you approach the release cycle?
I clearly want them to be independent, but what strategy would be a good one in terms of git branch management?
I normally fire the CI workflow to build and push the artifact in the case of a tag creation on the master branch, but what if there could be three or more different targets and only one of them should be released?
Thanks! 🙇
b
Big Chungus
06/02/2022, 4:29 PM
Different tag patterns for each target?
Big Chungus
06/02/2022, 4:29 PM
e.g. 1.0.0-android 1.0.0-ios
Big Chungus
06/02/2022, 4:30 PM
Then ci invokes the appropriate gradle tag depending on the tag type
n
Nacho Ruiz Martin
06/04/2022, 6:08 AM
🤔 Sounds like a good idea!! I'll give it a thought, thanks!