Skip to content

Commit

Permalink
fix(aws): Move NEXT_PUBLIC_RECAPTCHA_SITE_KEY_STAGING to build args
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvaznewm committed May 23, 2024
1 parent aa05a04 commit f3b3a2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cdk/bin/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ class WebDeployStack extends cdk.Stack {
{
code: lambda.DockerImageCode.fromImageAsset(rootDir, {
file: path.join("apps", appName, "Dockerfile"),
buildArgs: {
NEXT_PUBLIC_RECAPTCHA_SITE_KEY_STAGING: recaptchaKey,
}
}),
environment: {
NEXT_PUBLIC_RECAPTCHA_SITE_KEY_STAGING: recaptchaKey,
},
memorySize: 1024,
}
);
Expand Down

0 comments on commit f3b3a2f

Please sign in to comment.