Skip to main content
Module

x/actionify/mod.ts>DefaultStepInputs

Create and manage your GitHub workflows with TypeScript and Deno.
Go to Latest
interface DefaultStepInputs
import { type DefaultStepInputs } from "https://deno.land/x/actionify@0.2.0/mod.ts";

Properties

optional
args: ExpressionValue

A string that defines the inputs for a Docker container. GitHub passes the args to the container's ENTRYPOINT when the container starts up. An array of strings is not supported by this parameter.

optional
entrypoint: ExpressionValue

Overrides the Docker ENTRYPOINT in the Dockerfile, or sets it if one wasn't already specified. Unlike the Docker ENTRYPOINT instruction which has a shell and exec form, entrypoint keyword accepts only a single string defining the executable to be run.