From d3a544f4aa21c2363291f5ae46fae0f5bb33d108 Mon Sep 17 00:00:00 2001 From: forehalo Date: Tue, 12 Mar 2024 17:31:36 +0800 Subject: [PATCH] ci: only enable jwst codec in canary --- .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 5bd5cefdf5..647358883c 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 sync.replicaCount=${syncReplicaCount}`, `--set-string sync.image.tag="${imageTag}"`,