How to enrich final artifact with changes performed during 'put' step? #8921
-
|
Greetings! I have created custom concourse resource This is my concourse ci pipeline config file |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You are correct in your assumption: a The general flow Concourse is expecting you to follow is this:
Hope that makes sense. So if you want whatever your |
Beta Was this translation helpful? Give feedback.

You are correct in your assumption: a
putstep does not output any artifacts back into the build. This is what the "implicit"getstep is for that runs after yourputstep.The general flow Concourse is expecting you to follow is this:
putstep uploads/"puts" things to some external system to Concoursegetstep is immediately executed using theversionoutputted from yourputstep. This step should fetch the artifacts from the external system that the "things" were "put" toHope that makes sense. So if you want whatever your
putstep did to be available later in your build plan, you'll need to have it fetched by theinscript of your resource type.