Compare commits

...

3 Commits

Author SHA1 Message Date
ec29e7f7fe 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
2021-11-23 22:32:05 +01:00
b90b14e271 Merge pull request 'feature_cicd_fix' (#15) from feature_cicd_fix into develop
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: https://git.pbiernat.dev/docker/nginx-php/pulls/15
2021-11-23 21:11:15 +00:00
065735999d 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
2021-11-23 22:10:05 +01:00
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