UNPKG

@cdwr/deploy-env-action

Version:

The Deploy Env Action will analyze the environment to deploy your Fly.io applications to.

13 lines (12 loc) 435 B
import type { ActionInputs, EnvironmentConfig } from './types'; /** * Get environment configuration from action inputs. * * Default values are applied for optional inputs * and the configuration is validated by schema. * * @param inputs Action inputs * @returns Environment configuration * @throws If configuration is invalid */ export declare const getEnvironmentConfig: (inputs: ActionInputs) => Promise<EnvironmentConfig>;