You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may be intentional, as a way to ensure that pipelines in the monolithic pipeline build is simplified, but sometimes it can be useful to set up a multi-step pipeline without the overhead of a new file that needs to be managed.
It'd be good to understand if it's intentional - if so we can tweak the docs - or if not, it'd be appreciated if we could instead provide multiple steps.
The text was updated successfully, but these errors were encountered:
Right now, the
monorepo-diff
plugin only makes it possible to perform a single step when matching a givenpath
.For instance, let's take the following snippet:
We can see that we can only run one
command
/one set ofcommands
here, which means we can't perform a multi-step build.Therefore what we find is that we need to produce a separate pipeline for this, and make the following changes:
Then we would have the following separate pipeline file:
This may be intentional, as a way to ensure that pipelines in the monolithic pipeline build is simplified, but sometimes it can be useful to set up a multi-step pipeline without the overhead of a new file that needs to be managed.
It'd be good to understand if it's intentional - if so we can tweak the docs - or if not, it'd be appreciated if we could instead provide multiple steps.
The text was updated successfully, but these errors were encountered: