From 96d8b6bd677659705c83857cd09f89a55942984a Mon Sep 17 00:00:00 2001 From: Rajendra Reddy Date: Tue, 7 Apr 2026 13:07:49 +0000 Subject: [PATCH] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 3d5d5a5..2a0f3ef 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -29,9 +29,11 @@ jobs: if: inputs.tech_stack == 'node' || inputs.tech_stack == 'react' || inputs.tech_stack == 'nestjs' run: | if [ -n "${{ inputs.build_command }}" ]; then + set -xe echo "Running custom build command" ${{ inputs.build_command }} else + set -xe npm install npm run build fi