Skip to content

Commit 2220404

Browse files
committed
deploy service changes base path
1 parent 43fa61c commit 2220404

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

azure/templates/deploy-service.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,14 @@ steps:
200200
echo "DEBUG (evaluated old path): $BUILD_SOURCESDIRECTORY/${{ parameters.service_name }}/${{ parameters.service_name }}-$(BRANCH_NAME)+$(Build.BuildID)/ecs-proxies-containers.yml"
201201
202202
source $(SERVICE_DIR)/.build_env_vars
203-
export SERVICE_BASE_PATH="${{ parameters.service_base_path }}"
203+
export SERVICE_BASE_PATH="${{parameters.service_base_path }}"
204+
echo "DEBUG: SERVICE_BASE_PATH='${SERVICE_BASE_PATH}'"
205+
204206
export ASSUMED_VERSION=$(echo $SERVICE_ARTIFACT_NAME | grep -E -o "v[0-9]+\.[0-9]+\.[0-9]+-?[a-z]*" || true | tail -1)
205207
export DEPLOYED_VERSION=${ASSUMED_VERSION:-${{ parameters.fully_qualified_service_name }}}
206208
export TF_VAR_use_ecs_tag=$([[ "${is_pull_request}" == "false" ]] && echo true || echo false)
207-
209+
echo "DEBUG: TF_VAR_use_ecs_tag='${TF_VAR_use_ecs_tag}'"
210+
208211
account=${{ parameters.aws_account }} \
209212
CONTAINER_VARS_FILE="${CONTAINER_VARS_FILE}" \
210213
SOURCE_COMMIT_ID="$(Build.SourceVersion)" \

0 commit comments

Comments
 (0)