actions/build

11 lines
106 B
Text
Raw Normal View History

#!/bin/bash
cd sources
npm install
if [ "$1" == "all" ]; then
npm run all
else
npm run build
fi