From f49b7dc89455786ca8e1b5d6d4f6a0bfcd5870a4 Mon Sep 17 00:00:00 2001 From: Vinay Gaddam Date: Tue, 23 Jul 2024 10:12:36 +0530 Subject: [PATCH] fix s3 region --- scripts/release-cdn.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release-cdn.mjs b/scripts/release-cdn.mjs index 22457a1f..ebb639af 100644 --- a/scripts/release-cdn.mjs +++ b/scripts/release-cdn.mjs @@ -10,7 +10,7 @@ import fs from 'fs' dotenv.config() -const s3Client = new S3Client({ region: 'us-east-1' }) +const s3Client = new S3Client({ region: 'us-west-2' }) const cfClient = new CloudFrontClient({ region: 'us-east-1' }) const root = 'packages/web'