mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-11 22:04:37 +00:00
infra: docs ignore step in script (#24090)
This commit is contained in:
parent
6928f4c438
commit
141943a7e1
23
docs/ignore-step.sh
Executable file
23
docs/ignore-step.sh
Executable 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
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"buildCommand": "yarn build",
|
||||
"outputDirectory": "build",
|
||||
"ignoreCommand": "bash ignore-step.sh",
|
||||
"trailingSlash": true,
|
||||
"rewrites": [
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user