沈楠
aca179a9d9
Some checks failed
MJN/finance-dbt/pipeline/head There was a failure building this commit
10 lines
260 B
Bash
10 lines
260 B
Bash
if [[ "dev" = "$BRANCH_NAME" || "test" = "$BRANCH_NAME" || "prod" = "$BRANCH_NAME" ]]
|
|
then
|
|
export deployment=$BRANCH_NAME
|
|
export namespace=$BRANCH_NAME
|
|
else
|
|
export deployment=dev
|
|
export namespace=dev
|
|
fi
|
|
export image_tag=$IMAGE_TAG
|
|
. ./Deploy.sh |