PredeployCopyimport type { Predeploy } from "https://googleapis.deno.dev/v1/clouddeploy:v1.ts";Predeploy contains the predeploy job configuration information. interface Predeploy {actions?: string[];tasks?: Task[];}§Properties§actions?: string[][src]Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job. §tasks?: Task[][src]Optional. The tasks that will run as a part of the predeploy job. The tasks are executed sequentially in the order specified. Only one of actions or tasks can be specified.