Reputation: 132
We've got multiple projects in Gitlab, i.e.:
Each of the projects has its own .gitlab-ci.yml
and releases enabled.
I'm now trying to find a way how to combine all these individual releases into a master release, e.g.
The above should be combined and the final result would be a master release with its own versioning (e.g. v1.1.0).
How could I achieve that?
Upvotes: 2
Views: 1803
Reputation: 1324407
The documentation does mention retrieving artifacts from other projects, using a private token, as illustrated here.
That means you could have:
Upvotes: 1