infra: docs ignore step in script (#24090)

This commit is contained in:
Erick Friis 2024-07-11 00:18:00 +02:00 committed by GitHub
parent 6928f4c438
commit 141943a7e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 0 deletions

23
docs/ignore-step.sh Executable file
View File

@ -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

View File

@ -1,6 +1,7 @@
{ {
"buildCommand": "yarn build", "buildCommand": "yarn build",
"outputDirectory": "build", "outputDirectory": "build",
"ignoreCommand": "bash ignore-step.sh",
"trailingSlash": true, "trailingSlash": true,
"rewrites": [ "rewrites": [
{ {