Skip to content

Commit 4b91ca7

Browse files
committed
[NDR-318] Change name of full deploy
1 parent 245f176 commit 4b91ca7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/build_and_deploy_sandbox.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,15 @@ fi
150150
echo "🏗️ Running Lambda deployment"
151151
cd "$NDR_DIRECTORY"
152152
if [[ "$FULL_DEPLOY" == "true" ]]; then
153-
echo "🔁 Triggering Full Deploy to Sandbox workflow '$NDR_WORKFLOW_FILE' from '$NDR_WORKFLOW_BRANCH' with branch '$NDR_BRANCH' to '$SANDBOX_NAME'..."
153+
echo "🔁 Triggering Full Deploy to Sandbox workflow '$NDR_WORKFLOW_FILE_FULL' from '$NDR_WORKFLOW_BRANCH' with branch '$NDR_BRANCH' to '$SANDBOX_NAME'..."
154154
# Trigger the workflow and capture the run ID
155155
gh workflow run "$NDR_WORKFLOW_FILE_FULL" --ref "$NDR_WORKFLOW_BRANCH" --field build_branch="$NDR_BRANCH" --field sandbox="$SANDBOX_NAME" --field environment="development" >/dev/null
156156
else
157157
echo "🔁 Triggering Deploy lambdas to Sandbox workflow '$NDR_WORKFLOW_FILE' from '$NDR_WORKFLOW_BRANCH' with branch '$NDR_BRANCH' to '$SANDBOX_NAME'..."
158158
# Trigger the workflow and capture the run ID
159159
gh workflow run "$NDR_WORKFLOW_FILE" --ref "$NDR_WORKFLOW_BRANCH" --field build_branch="$NDR_BRANCH" --field sandbox="$SANDBOX_NAME" --field environment="development" >/dev/null
160160
fi
161+
161162
for i in {1..10}; do
162163
lambda_run_id=$(
163164
gh run list \

0 commit comments

Comments
 (0)