From f6fbc3882e743902ee0668de67a08c197b52281a Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Sat, 13 Dec 2025 11:46:25 +0100 Subject: [PATCH] Added env variables. --- .github/workflows/sonar.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 76c9100..7b8850d 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -35,7 +35,11 @@ jobs: env: CI: true - name: Build site - run: NODE_ENV=production NITRO_PRESET=node_cluster NITRO_CLUSTER_WORKERS=4 npm run build + env: + NODE_ENV: production + NITRO_PRESET: node_cluster + NITRO_CLUSTER_WORKERS: 4 + run: npm run build - name: Upload build artifacts uses: actions/upload-artifact@v3 with: