Add missing production condition for deploy script

This commit is contained in:
zomars 2023-05-19 13:37:19 -07:00
parent 39a7a2240f
commit 8b4ce91fef

View File

@ -17,6 +17,9 @@ if [ "$GITHUB_ACCESS_TOKEN" == "" ]; then
fi
# We add an exception to test on staging
if [ "$VERCEL_GIT_COMMIT_REF" == "production" ]; then
BRANCH_TO_CLONE="-b $VERCEL_GIT_COMMIT_REF"
fi
if [ "$VERCEL_GIT_COMMIT_REF" == "staging" ]; then
BRANCH_TO_CLONE="-b $VERCEL_GIT_COMMIT_REF"
fi