From 34c8967726d1c531beb99c8fe2188d93e71d5c0e Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 20 Jun 2024 10:37:51 -0400 Subject: [PATCH] add vercel script --- vercel.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vercel.sh diff --git a/vercel.sh b/vercel.sh new file mode 100644 index 000000000..27b048943 --- /dev/null +++ b/vercel.sh @@ -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