Update .gitea/workflows/build.yml

This commit is contained in:
2026-04-07 13:07:49 +00:00
parent 36e949e752
commit 96d8b6bd67

View File

@@ -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