From 064b8914548936ecd805de5f5987722e6fa1ea6c Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Fri, 13 Sep 2024 14:03:57 -0700 Subject: [PATCH] infra: v0.2 docs from v0.2 branch (#26449) --- docs/ignore-step.sh | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/docs/ignore-step.sh b/docs/ignore-step.sh index 8cd5e937d24..c331e855a64 100755 --- a/docs/ignore-step.sh +++ b/docs/ignore-step.sh @@ -4,20 +4,25 @@ echo "VERCEL_ENV: $VERCEL_ENV" 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 - echo "✅ Production build - proceeding with build" - exit 1; -else - echo "Checking for changes in docs/" +if [ "$VERCEL_ENV" == "production" ] || \ + [ "$VERCEL_GIT_COMMIT_REF" == "master" ] || \ + [ "$VERCEL_GIT_COMMIT_REF" == "v0.1" ] || \ + [ "$VERCEL_GIT_COMMIT_REF" == "v0.2" ] +then + echo "✅ Production build - proceeding with build" + exit 1 +fi + + +echo "Checking for changes in docs/" +echo "---" +git log -n 50 --pretty=format:"%s" -- . | grep -v '(#' +if [ $? -eq 0 ]; then echo "---" - git log -n 50 --pretty=format:"%s" -- . | grep -v '(#' - if [ $? -eq 0 ]; then - echo "---" - echo "✅ Changes detected in docs/ - proceeding with build" - exit 1 - else - echo "---" - echo "🛑 No changes detected in docs/ - ignoring build" - exit 0 - fi + echo "✅ Changes detected in docs/ - proceeding with build" + exit 1 +else + echo "---" + echo "🛑 No changes detected in docs/ - ignoring build" + exit 0 fi