diff --git a/v1/scripts/ci_functions.sh b/v1/scripts/ci_functions.sh index 8b649bb..d550b68 100644 --- a/v1/scripts/ci_functions.sh +++ b/v1/scripts/ci_functions.sh @@ -34,13 +34,15 @@ function upload_image(){ } function deploy_prod(){ + #Global ENV VAR: CICD_API_PROD_WEBHOOK set -x - echo "Not yet defined" + curl -X POST "${CICD_API_PROD_WEBHOOK}" set +x } function deploy_dev(){ + #Global ENV VAR: CICD_API_DEV_WEBHOOK set -x - echo "Not yet defined" + curl -X POST "${CICD_API_DEV_WEBHOOK}" set +x }