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

x/actionify/versions/0.ts>c.setDebug

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

const step = Step
  .create()
  .run(commands.setDebug('This is a debug message'));

Parameters

message: ExpressionValue

Returns

Command<DefaultCommandTypes>