From 3799bf2f4be29f821bf80fe225eac368d2d565b3 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Mon, 22 Dec 2025 16:07:57 -0500 Subject: [PATCH 1/2] fix(ci): disable all locale export Signed-off-by: Aviv Keller --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af838056c57e3..a7c773a1dd127 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,5 +84,4 @@ jobs: # this should be a last resort in case by any chances the build memory gets too high # but in general this should never happen NODE_OPTIONS: '--max_old_space_size=4096' - # We want to ensure that static exports for all locales do not occur on `pull_request` events - NEXT_PUBLIC_STATIC_EXPORT_LOCALE: ${{ github.event_name == 'push' }} + # TODO: All locales takes waaaay to much space From 0ee76b85f63aeaa4b8922e5a231a4129cd262d8b Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Mon, 22 Dec 2025 16:11:18 -0500 Subject: [PATCH 2/2] Update build.yml Signed-off-by: Aviv Keller --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7c773a1dd127..d8fddd0338d98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,4 +84,6 @@ jobs: # this should be a last resort in case by any chances the build memory gets too high # but in general this should never happen NODE_OPTIONS: '--max_old_space_size=4096' - # TODO: All locales takes waaaay to much space + # We want to ensure that static exports for all locales do not occur on `pull_request` events + # TODO: The output of this is too large, and it crashes the GitHub Runner + NEXT_PUBLIC_STATIC_EXPORT_LOCALE: false # ${{ github.event_name == 'push' }}