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 previous condition `${{ inputs.upload_artifacts }}` would evaluate
to true for any non-empty string, causing artifacts to be uploaded even
when the input was false.
This change corrects the condition to `${{ inputs.upload_artifacts ==
true }}`, ensuring that artifacts are only uploaded when the
`upload_artifacts` input is explicitly set to true.
Co-authored-by: [email protected]
0 commit comments