pub fn set_output<K, V>(k: K, v: V)where K: ToString, V: ToString,
Sets an action’s output parameter.
use actions_core as core; let count = 5; core::set_output("count", 5);