diff --git a/.vercel/ignore-gh-pages.sh b/.vercel/ignore-gh-pages.sh new file mode 100644 index 00000000..7b500875 --- /dev/null +++ b/.vercel/ignore-gh-pages.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Don't try to build the gh-pages branch. + +if [[ "$BRANCH" != "gh-pages" ]] ; then + # Proceed with the build + exit 1; +else + # Don't build + exit 0; +fi \ No newline at end of file