Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/commands.ts>debug

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
function debug
import { debug } from "https://deno.land/x/actionify@0.3.0/src/commands.ts";

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'));

Returns

Command<DefaultCommandTypes>