Skip to main content
Module

x/actionify/mod.ts>c.debug

Create and manage your GitHub workflows with TypeScript and Deno.
Go to Latest
function c.debug
import { c } from "https://deno.land/x/actionify@0.2.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.2.0/mod.ts';

const exampleStep = step()
  .run(commands.debug('This is a debug message'));

Parameters

message: ExpressionValue

Returns

Command<DefaultCommandTypes>