[][src]Function actions_core::set_output

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

Sets an action's output parameter.

use actions_core as core;

let count = 5;

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