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
The condition steps.create_tag.outputs.successful always returns true. So if: steps.create_tag.outputs.successful always passes.
I had to use: if: steps.create_tag.outputs.successful == 'true' to get it to work
I am absolutely no specialist of this yaml language but it looks like steps.create_tag.outputs.successful is a string and not a boolean. But I may be totally wrong....
The text was updated successfully, but these errors were encountered:
@parischap I checked the stability, you're right, thank you
/** * Sets the value of an output. * * @param name name of the output to set * @param value value to store. Non-string values will be converted to a string via JSON.stringify */
export declarefunctionsetOutput(name: string,value: any): void;
The condition
steps.create_tag.outputs.successful
always returns true. Soif: steps.create_tag.outputs.successful
always passes.I had to use:
if: steps.create_tag.outputs.successful == 'true'
to get it to workI am absolutely no specialist of this yaml language but it looks like steps.create_tag.outputs.successful is a string and not a boolean. But I may be totally wrong....
The text was updated successfully, but these errors were encountered: