Skip to main content

set_output

Function set_output 

Source
pub fn set_output<K, V>(k: K, v: V)
where K: ToString, V: ToString,
Expand description

Sets an action’s output parameter.

use actions_core as core;

let count = 5;

core::set_output("count", 5);