I have setup a monorepo for my microfrontends application. I am new to devops and so I read this article and figured out how to create separate pipelines for each mfe. The final step is where I am a bit confused. When a build completes it generates an artifact which is then sent to the app service. My question is how do I get access those artifacts (from each of my remotes) in the release pipeline? The structure of the monorepo is like this:
- packages
- container
- container-pipeline.yml
- mfe1
- mfe1-pipeline.yml
- mfe2
- mfe2-pipeline.yml
How do I create the release pipeline so that changes to any mfe trigger the builds for that pipeline only, but the artifacts get updated. Since this project is fairly new, I'm open to any suggestions.