Replies: 2 comments 1 reply
-
|
Skipping steps would break if the state required from the previous step wasn't provided to the running step. How are you solving that problem? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
I just started testing out custom Pipelines and being able to temporarily skip the publishing (and use the old artifact) for testing deployment would be nice.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With Aspire 13 we can now define arbitrary steps for our publish and deploy pipelines. What I would really like to see is something like a
--skip(-step)or--exclude(-step)flag that allows to skip/disable certain steps of the pipeline.For instance,
aspire deploy --skip build-*would skip any image build steps (if the images were already built before) oraspire deploy --skip publishcould skip any unnecessary publishing when deploying. This is especially useful in CI/CD environments where steps are often spread over multiple "stages" and we want to avoid doing work multiple times.Beta Was this translation helpful? Give feedback.
All reactions