From 8d28584234bcecdcf94a2da56d0deaa6873de7be Mon Sep 17 00:00:00 2001 From: stevensJourney Date: Wed, 27 May 2026 12:07:00 +0200 Subject: [PATCH 1/2] fix release builds --- .github/workflows/buildArtifacts.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/buildArtifacts.yml b/.github/workflows/buildArtifacts.yml index 8e5b63e..0a631f6 100644 --- a/.github/workflows/buildArtifacts.yml +++ b/.github/workflows/buildArtifacts.yml @@ -1,5 +1,9 @@ name: Build CLI Installer Artifacts Partial +env: + # Increase heap to keep Nitro/Vite SSR builds (editor) from OOMing while treeshaking. + NODE_OPTIONS: --max-old-space-size=4096 + on: workflow_call: inputs: From 43c0216d5b9517dffa0b85f397a5edebd4d90881 Mon Sep 17 00:00:00 2001 From: stevensJourney Date: Wed, 27 May 2026 12:11:21 +0200 Subject: [PATCH 2/2] fix manual invocations --- .github/workflows/onDispatchBuildArtifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/onDispatchBuildArtifacts.yml b/.github/workflows/onDispatchBuildArtifacts.yml index ec9983d..05de3d7 100644 --- a/.github/workflows/onDispatchBuildArtifacts.yml +++ b/.github/workflows/onDispatchBuildArtifacts.yml @@ -12,4 +12,4 @@ jobs: build-artifacts: uses: ./.github/workflows/buildArtifacts.yml with: - retention-days: ${{ inputs.retention-days || 7 }} + retention-days: ${{ inputs.retention-days }}