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
Hey there, thanks for the action. Would you be open to accepting a PR that adds support for multiline output? It's helpful for example when outputting one field from each item in a list. Right now, if the jq output has multiple lines, only the first line is set as the output, and the rest of the lines are just written to stdout.
- name: Verify each contributed theme existsshell: bashrun: | themes_in_package_json="${{ steps.themes.outputs.value }}" for theme in $themes_in_package_json; do .... done
Let me know! Thanks.
The text was updated successfully, but these errors were encountered:
Hey there, thanks for the action. Would you be open to accepting a PR that adds support for multiline output? It's helpful for example when outputting one field from each item in a list. Right now, if the
jq
output has multiple lines, only the first line is set as the output, and the rest of the lines are just written to stdout.It would look like this:
And then the multiline output can be used like
Let me know! Thanks.
The text was updated successfully, but these errors were encountered: