UNPKG

@cdwr/nx-fly-deployment-action

Version:

The Nx Fly Deployment Action will manage your deployments to fly.io.

18 lines (17 loc) 634 B
import type { Environment } from '@codeware/core/actions'; import { Fly } from '@codeware/fly-node'; import type { ActionOutputs } from '../schemas/action-outputs.schema'; import type { DeploymentConfig } from '../schemas/deployment-config.schema'; /** * Deploy apps that are affected by code changes * and have Fly configuration available. * * @param options - Deployment options * @returns List of deploy statuses of apps */ export declare const runDeployApps: (options: { config: DeploymentConfig; environment: Environment; fly: Fly; pullRequest: number | undefined; }) => Promise<ActionOutputs["projects"]>;