From 141943a7e1ca78d4000b40b806824c4a14d2e8d5 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 11 Jul 2024 00:18:00 +0200 Subject: [PATCH] infra: docs ignore step in script (#24090) --- docs/ignore-step.sh | 23 +++++++++++++++++++++++ docs/vercel.json | 1 + 2 files changed, 24 insertions(+) create mode 100755 docs/ignore-step.sh diff --git a/docs/ignore-step.sh b/docs/ignore-step.sh new file mode 100755 index 00000000000..0591891eeb0 --- /dev/null +++ b/docs/ignore-step.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +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/ and templates/:" + echo "---" + git log -n 50 --pretty=format:"%s" -- . ../templates | grep -v '(#' + if [ $? -eq 0 ]; then + echo "---" + echo "✅ Changes detected in docs/ or templates/ - proceeding with build" + exit 1 + else + echo "---" + echo "🛑 No changes detected in docs/ or templates/ - ignoring build" + exit 0 + fi +fi diff --git a/docs/vercel.json b/docs/vercel.json index ce3c7ba1786..11adcd6746a 100644 --- a/docs/vercel.json +++ b/docs/vercel.json @@ -1,6 +1,7 @@ { "buildCommand": "yarn build", "outputDirectory": "build", + "ignoreCommand": "bash ignore-step.sh", "trailingSlash": true, "rewrites": [ {