Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Postdeploy

import type { Postdeploy } from "https://googleapis.deno.dev/v1/clouddeploy:v1.ts";

Postdeploy contains the postdeploy job configuration information.

interface Postdeploy {
actions?: string[];
tasks?: Task[];
}

§Properties

§
actions?: string[]
[src]

Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.

§
tasks?: Task[]
[src]

Optional. The tasks that will run as a part of the postdeploy job. The tasks are executed sequentially in the order specified. Only one of actions or tasks can be specified.