@cdwr/nx-fly-deployment-action
Version:
The Nx Fly Deployment Action will manage your deployments to fly.io.
16 lines (15 loc) • 512 B
TypeScript
/**
* Add opinionated environment variables to the environment
*
* - `APP_NAME`
* - `PR_NUMBER`
*
* @param appName - The name of the app
* @param prNumber - The pull request number
* @param env - The current environment variables to append to
* @returns The environment variables with the opinionated environment variables added
*/
export declare const addOpinionatedEnv: ({ appName, prNumber }: {
appName: string;
prNumber?: number;
}, env?: Record<string, string>) => Record<string, string>;