@cdwr/nx-fly-deployment-action
Version:
The Nx Fly Deployment Action will manage your deployments to fly.io.
31 lines (30 loc) • 814 B
TypeScript
import { z } from 'zod';
export declare const ActionInputsSchema: z.ZodObject<{
env: z.ZodArray<z.ZodString, "many">;
flyApiToken: z.ZodString;
flyOrg: z.ZodString;
flyRegion: z.ZodString;
mainBranch: z.ZodString;
optOutDepotBuilder: z.ZodBoolean;
secrets: z.ZodArray<z.ZodString, "many">;
token: z.ZodString;
}, "strip", z.ZodTypeAny, {
env: string[];
secrets: string[];
token: string;
flyApiToken: string;
flyOrg: string;
flyRegion: string;
mainBranch: string;
optOutDepotBuilder: boolean;
}, {
env: string[];
secrets: string[];
token: string;
flyApiToken: string;
flyOrg: string;
flyRegion: string;
mainBranch: string;
optOutDepotBuilder: boolean;
}>;
export type ActionInputs = z.infer<typeof ActionInputsSchema>;