Hello! :wave: I was wondering... Given that the ...
# multiplatform
n
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
Different tag patterns for each target?
e.g. 1.0.0-android 1.0.0-ios
Then ci invokes the appropriate gradle tag depending on the tag type
n
🤔 Sounds like a good idea!! I'll give it a thought, thanks!