Function set_output

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

Sets an action’s output parameter.

use actions_core as core;

let count = 5;

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