@cdwr/nx-fly-deployment-action
Version:
The Nx Fly Deployment Action will manage your deployments to fly.io.
10 lines (9 loc) • 373 B
TypeScript
import { type ActionInputs } from './schemas/action-inputs.schema';
import { type ActionOutputs } from './schemas/action-outputs.schema';
/**
* Run fly deployment process
*
* @param inputs Deployment options
* @param throwOnError Whether to throw on error
*/
export declare function flyDeployment(inputs: ActionInputs, throwOnError?: boolean): Promise<ActionOutputs>;