26 lines
807 B
Bash
26 lines
807 B
Bash
|
# Repo which we are cloning and executing npm run build:deploy-preview within
|
||
|
REPO_TO_CLONE=dev-portal
|
||
|
# Set the subdirectory name for the dev-portal app
|
||
|
PREVIEW_DIR=website-preview
|
||
|
# The product for which we are building the deploy preview
|
||
|
PRODUCT=consul
|
||
|
|
||
|
should_pull=true
|
||
|
|
||
|
# Clone the dev-portal project, if needed
|
||
|
if [ ! -d "$PREVIEW_DIR" ]; then
|
||
|
echo "⏳ Cloning the $REPO_TO_CLONE repo, this might take a while..."
|
||
|
git clone --depth=1 https://github.com/hashicorp/$REPO_TO_CLONE.git "$PREVIEW_DIR"
|
||
|
should_pull=false
|
||
|
fi
|
||
|
|
||
|
cd "$PREVIEW_DIR"
|
||
|
|
||
|
# If the directory already existed, pull to ensure the clone is fresh
|
||
|
if [ "$should_pull" = true ]; then
|
||
|
git pull origin main
|
||
|
fi
|
||
|
|
||
|
# Run the dev-portal content-repo start script
|
||
|
REPO=$PRODUCT PREVIEW_DIR="$PREVIEW_DIR" npm run start:local-preview
|