finance-dbt/CD.sh
沈楠 0ffaacc353
All checks were successful
MJN/finance-dbt/pipeline/head This commit looks good
init: created
2024-04-12 19:07:47 +08:00

9 lines
267 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