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