import { c } from "https://deno.land/x/actionify@0.3.0/mod.ts";
const { debug } = c;
Prints a debug message to the log. You must create a secret named
ACTIONS_STEP_DEBUG
with the value true
to see the debug messages set by
this command in the log.
import { step, commands } from 'https://deno.land/x/actionify@0.3.0/mod.ts';
const exampleStep = step()
.run(commands.debug('This is a debug message'));