From af49e8cc417c1b2a1a7b853ab8e8ee28d6ca587c Mon Sep 17 00:00:00 2001 From: liuyi Date: Tue, 12 Mar 2024 09:44:38 +0000 Subject: [PATCH] ci: only enable jwst codec in canary (#6081) --- .github/actions/deploy/deploy.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/deploy/deploy.mjs b/.github/actions/deploy/deploy.mjs index c3e7c58652..c2fa7608f1 100644 --- a/.github/actions/deploy/deploy.mjs +++ b/.github/actions/deploy/deploy.mjs @@ -111,7 +111,7 @@ const createHelmCommand = ({ isDryRun }) => { `--set-string graphql.app.oauth.google.clientSecret="${AFFINE_GOOGLE_CLIENT_SECRET}"`, `--set-string graphql.app.payment.stripe.apiKey="${STRIPE_API_KEY}"`, `--set-string graphql.app.payment.stripe.webhookKey="${STRIPE_WEBHOOK_KEY}"`, - `--set graphql.app.experimental.enableJwstCodec=true`, + `--set graphql.app.experimental.enableJwstCodec=${isInternal}`, `--set graphql.app.features.earlyAccessPreview=false`, `--set graphql.app.features.syncClientVersionCheck=true`, `--set sync.replicaCount=${syncReplicaCount}`,