File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ This project adheres to [Semantic Versioning][semver].
8
8
9
9
Refer to master branch
10
10
11
- ## \[ v1.1.1\] - 2019-10-13
11
+ ## \[ v1.1.1\] - 2019-10-14
12
12
13
- ### Split PHP builds, PHP FPM:
13
+ ### Split PHP builds, PHP FPM, Latest tag :
14
14
- Split builds by PHP version and variant
15
15
- Use builds Docker hooks in Makefile
16
16
- Added ` fpm ` variant
Original file line number Diff line number Diff line change @@ -33,4 +33,9 @@ if [ -n "${DOCKER_TAG}" ]; then
33
33
fi
34
34
fi
35
35
36
+ HAS_IMAGE_NAME=
37
+ if [ -n " $IMAGE_NAME " ]; then
38
+ HAS_IMAGE_NAME=1
39
+ fi
40
+
36
41
echo
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ for php_version in $PHP_VERSIONS; do
17
17
xdebug_version=-2.5.5
18
18
fi
19
19
for php_variant in $PHP_VARIANTS ; do
20
- if [ -z " $IMAGE_NAME " ]; then
20
+ if [ -z " $HAS_IMAGE_NAME " ] || [ -z " $ IMAGE_NAME" ]; then
21
21
IMAGE_NAME=" $DOCKER_REPO :$php_version -$php_variant -$SOURCE_BRANCH "
22
22
echo " >>> Set IMAGE_NAME to: $IMAGE_NAME "
23
23
fi
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ SEMVER_REGEX="^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(\\-[0-9A-Za-z
14
14
15
15
for php_version in $PHP_VERSIONS ; do
16
16
for php_variant in $PHP_VARIANTS ; do
17
- if [ -z " $IMAGE_NAME " ]; then
17
+ if [ -z " $HAS_IMAGE_NAME " ] || [ -z " $ IMAGE_NAME" ]; then
18
18
IMAGE_NAME=" $DOCKER_REPO :$php_version -$php_variant -$SOURCE_BRANCH "
19
19
echo " >>> Set IMAGE_NAME to: $IMAGE_NAME "
20
20
fi
You can’t perform that action at this time.
0 commit comments