What am I doing wrong with this conditional step? #3217
-
Beta Was this translation helpful? Give feedback.
Answered by
MarouaneBenbetka
Apr 9, 2024
Replies: 1 comment
-
Your action's conditional check fails because the environment variable READY is being evaluated as a string, not a boolean. In your debug step, you've observed that echo "$READY" and echo "${{env.READY}}" both output true, indicating that the value is stored as the string "true", not the boolean true. this should fix it , if so mark is as answered please
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tking16
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your action's conditional check fails because the environment variable READY is being evaluated as a string, not a boolean. In your debug step, you've observed that echo "$READY" and echo "${{env.READY}}" both output true, indicating that the value is stored as the string "true", not the boolean true.
this should fix it , if so mark is as answered please