add vercel script

This commit is contained in:
Cory LaViska
2024-06-20 10:37:51 -04:00
parent 1dba8635ad
commit 34c8967726

8
vercel.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
if [[ $VERCEL_GIT_COMMIT_REF == "alpha" ]] ; then
echo "Running the alpha build!"
npm run build:alpha
else
npm run build
fi