UNPKG

@cdwr/nx-fly-deployment-action

Version:

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

19 lines (18 loc) 665 B
/** * Add opinionated environment variables to the environment * * - `APP_NAME` * - `PR_NUMBER` * - `TENANT_ID` (if applicable) * * @param appName - The name of the app * @param prNumber - The pull request number * @param tenantId - The tenant ID (if applicable) * @param env - The current environment variables to append to (not mutated) * @returns The environment variables with the opinionated environment variables added */ export declare const addOpinionatedEnv: ({ appName, prNumber, tenantId }: { appName: string; prNumber: number | undefined; tenantId: string | undefined; }, env?: Record<string, string>) => Record<string, string>;