infra: v0.2 docs from v0.2 branch (#26449)

This commit is contained in:
Erick Friis 2024-09-13 14:03:57 -07:00 committed by GitHub
parent d9813bdbbc
commit 064b891454
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,20 +4,25 @@ echo "VERCEL_ENV: $VERCEL_ENV"
echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF" echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"
if [ "$VERCEL_ENV" == "production" ] || [ "$VERCEL_GIT_COMMIT_REF" == "master" ] || [ "$VERCEL_GIT_COMMIT_REF" == "v0.1" ]; then if [ "$VERCEL_ENV" == "production" ] || \
echo "✅ Production build - proceeding with build" [ "$VERCEL_GIT_COMMIT_REF" == "master" ] || \
exit 1; [ "$VERCEL_GIT_COMMIT_REF" == "v0.1" ] || \
else [ "$VERCEL_GIT_COMMIT_REF" == "v0.2" ]
echo "Checking for changes in docs/" then
echo "---" echo "✅ Production build - proceeding with build"
git log -n 50 --pretty=format:"%s" -- . | grep -v '(#' exit 1
if [ $? -eq 0 ]; then fi
echo "---"
echo "✅ Changes detected in docs/ - proceeding with build"
exit 1 echo "Checking for changes in docs/"
else echo "---"
echo "---" git log -n 50 --pretty=format:"%s" -- . | grep -v '(#'
echo "🛑 No changes detected in docs/ - ignoring build" if [ $? -eq 0 ]; then
exit 0 echo "---"
fi echo "✅ Changes detected in docs/ - proceeding with build"
exit 1
else
echo "---"
echo "🛑 No changes detected in docs/ - ignoring build"
exit 0
fi fi