Skip to content

Commit

Permalink
Fixes pushing prod image directly from breeze (#9449)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Jun 20, 2020
1 parent 47a6402 commit 7078c1b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion breeze
Original file line number Diff line number Diff line change
Expand Up @@ -1949,10 +1949,18 @@ function run_build_command {
rebuild_ci_image_if_needed
fi
;;
build_docs|perform_static_checks|perform_generate_requirements|perform_prepare_backport_readme|perform_prepare_backport_packages|perform_push_image)
build_docs|perform_static_checks|perform_generate_requirements|perform_prepare_backport_readme|perform_prepare_backport_packages)
prepare_ci_build
rebuild_ci_image_if_needed
;;
perform_push_image)
if [[ ${PRODUCTION_IMAGE} == "true" ]]; then
prepare_prod_build
else
prepare_ci_build
rebuild_ci_image_if_needed
fi
;;
build_image)
if [[ ${PRODUCTION_IMAGE} == "true" ]]; then
prepare_prod_build
Expand Down

0 comments on commit 7078c1b

Please sign in to comment.