Skip to content

Commit

Permalink
Fixes pushing prod image directly from breeze (#9449)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7078c1b)
  • Loading branch information
potiuk committed Jun 20, 2020
1 parent e31761f commit 67591bc
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 @@ -1804,10 +1804,18 @@ function run_build_command {
rebuild_ci_image_if_needed
fi
;;
build_docs|perform_static_checks|perform_generate_requirements|perform_push_image)
build_docs|perform_static_checks|perform_generate_requirements)
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 67591bc

Please sign in to comment.