If I have a more complex mage task running build but additional some steps for pre-setup is it possible to group them under seperate equally level pipelines? Is that not the correct way to use?
golang = golang.Pipeline("build")
// do setup
golang = golang.Pipeline("build").Pipeline("setup")
// now run goreleaser
golang = golang.Pipeline("build").Pipeline("goreleaser")
I know that's not write as it's just appending, but that's the general idea I was trying to wrap my head around.