Skip to main content
Module

x/actionify/mod.ts>commands.Command

Create and manage your GitHub workflows with TypeScript and Deno.
Go to Latest
class commands.Command
import { commands } from "https://deno.land/x/actionify@0.2.0/mod.ts";
const { Command } = commands;

Actions can communicate with the runner machine to set environment variables, output values used by other actions, add debug messages to the output logs, and other tasks.

Most workflow commands use the echo command in a specific format, while others are invoked by writing to a file

Constructors

new
private
Command(value: string)

Type Parameters

Types extends CommandTypes

Static Methods

create<Types extends CommandTypes = DefaultCommandTypes>(value: string): Command<Types>