mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-28 06:48:50 +00:00
infra: ignore docs build in v0.3rc branch (#25990)
This commit is contained in:
@@ -7,17 +7,24 @@ 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" ] || [ "$VERCEL_GIT_COMMIT_REF" == "master" ] || [ "$VERCEL_GIT_COMMIT_REF" == "v0.1" ]; then
|
||||||
echo "✅ Production build - proceeding with build"
|
echo "✅ Production build - proceeding with build"
|
||||||
exit 1;
|
exit 1;
|
||||||
else
|
fi
|
||||||
echo "Checking for changes in docs/"
|
|
||||||
echo "---"
|
# TODO: remove this for v0.3 launch
|
||||||
git log -n 50 --pretty=format:"%s" -- . | grep -v '(#'
|
# exit 0 if git commit ref is v0.3rc
|
||||||
if [ $? -eq 0 ]; then
|
echo "🛑 v0.3rc build is ignored currently"
|
||||||
echo "---"
|
exit 0;
|
||||||
echo "✅ Changes detected in docs/ - proceeding with build"
|
# end TODO
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "---"
|
echo "Checking for changes in docs/"
|
||||||
echo "🛑 No changes detected in docs/ - ignoring build"
|
echo "---"
|
||||||
exit 0
|
git log -n 50 --pretty=format:"%s" -- . | grep -v '(#'
|
||||||
fi
|
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
|
fi
|
||||||
|
Reference in New Issue
Block a user