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

x/actionify/src/step.ts>DefaultStepInputs

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
interface DefaultStepInputs
import { type DefaultStepInputs } from "https://deno.land/x/actionify@0.3.0/src/step.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.