webapp/deploy.sh
2024-07-01 16:57:30 +03:00

8 lines
195 B
Bash

if [ "$VERCEL_GIT_COMMIT_REF" = "router-upgrade" ] || [ "$VERCEL_GIT_COMMIT_REF" = "feature/rating" ]; then
echo "Building on solid start"
exit 1
else
echo "Not on solid start"
exit 0
fi