2022-10-11 16:39:47 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-03-28 22:48:58 +00:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-10-11 16:39:47 +00:00
|
|
|
|
|
|
|
######################################################
|
|
|
|
# NOTE: This file is managed by the Digital Team's #
|
|
|
|
# Terraform configuration @ hashicorp/mktg-terraform #
|
|
|
|
######################################################
|
2021-03-29 15:09:51 +00:00
|
|
|
|
|
|
|
# This is run during the website build step to determine if we should skip the build or not.
|
|
|
|
# More information: https://vercel.com/docs/platform/projects#ignored-build-step
|
|
|
|
|
|
|
|
if [[ "$VERCEL_GIT_COMMIT_REF" == "stable-website" ]] ; then
|
|
|
|
# Proceed with the build if the branch is stable-website
|
|
|
|
echo "✅ - Build can proceed"
|
|
|
|
exit 1;
|
|
|
|
else
|
|
|
|
# Check for differences in the website directory
|
|
|
|
git diff --quiet HEAD^ HEAD ./
|
2022-10-11 16:39:47 +00:00
|
|
|
fi
|