Files
webawesome/vercel.sh

9 lines
144 B
Bash
Raw Permalink Normal View History

2024-06-20 10:37:51 -04:00
#!/bin/bash
if [[ $VERCEL_GIT_COMMIT_REF == "alpha" ]] ; then
echo "Running the alpha build!"
npm run build:alpha
else
npm run build
fi