Skip to content

Commit

Permalink
infra: v0.2 docs from v0.2 branch (#26449)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Sep 13, 2024
1 parent d9813bd commit 064b891
Showing 1 changed file with 20 additions and 15 deletions.
35 changes: 20 additions & 15 deletions docs/ignore-step.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "---"
echo "βœ… Changes detected in docs/ - proceeding with build"
exit 1
else
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 "πŸ›‘ No changes detected in docs/ - ignoring build"
exit 0
fi

0 comments on commit 064b891

Please sign in to comment.