Merge branch 'develop' into feature_cicd_fix
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Piotr Biernat 2021-11-23 22:32:05 +01:00
commit ec29e7f7fe
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -31,7 +31,7 @@ if { [ "$branch" = develop ] && [ "$event" = pull_request ]; } ; then
return 0
fi
if { [ "$branch" = develop ] && [ "$event" = push ]; } ; then
if { [ "$branch" = develop ] && [ "$event" = push ] && [ "$step_name" != build_feature ]; } ; then
echo "BUILD DEV"
docker build -t docker.pbiernat.dev/nginx-php:dev .
return 0