pub fn set_output(name: &str, value: &str) -> Result<(), ActionsError>
Expand description
Produces an output that can be used in another step
use actions_github::core;
if let Err(err) = core::set_output("name", "value") {
panic!("{:#?}", err);
}