@cdwr/nx-fly-deployment-action
Version:
The Nx Fly Deployment Action will manage your deployments to fly.io.
24 lines (23 loc) • 780 B
TypeScript
import { z } from 'zod';
export declare const GitHubConfigSchema: z.ZodEffects<z.ZodObject<{
deploy: z.ZodBoolean;
flyConfig: z.ZodString;
flyPostgresPreview: z.ZodOptional<z.ZodString>;
flyPostgresProduction: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
deploy: boolean;
flyConfig: string;
flyPostgresPreview?: string | undefined;
flyPostgresProduction?: string | undefined;
}, {
deploy: boolean;
flyConfig: string;
flyPostgresPreview?: string | undefined;
flyPostgresProduction?: string | undefined;
}>, {
deploy: boolean;
flyConfig: string;
flyPostgresPreview?: string | undefined;
flyPostgresProduction?: string | undefined;
}, unknown>;
export type GitHubConfig = z.infer<typeof GitHubConfigSchema>;