1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00

chore: add vercel-deploy.sh

This commit is contained in:
divlo 2021-04-20 15:45:47 +02:00
parent f11425b2c2
commit 73352d4414

11
vercel-deploy.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
echo "VERCEL_ENV: ${VERCEL_ENV}"
if [[ "${VERCEL_ENV}" == "production" ]]; then
echo "✅ - Build can proceed"
exit 1
else
echo "🛑 - Build cancelled"
exit 0
fi