|
@@ -24,15 +24,16 @@ export DOCKER_BuildxExtArgs=
|
|
|
#---------------------------------------------------------------------
|
|
|
echo "73.docker-image-build-push.sh"
|
|
|
|
|
|
-if [ ! -d "$basePath/Publish/release/release/docker-image" ]; then
|
|
|
- echo '##73.docker-image-build-push.sh -> skip for no docker image files exist'
|
|
|
- exit 0
|
|
|
-fi
|
|
|
+if [ -d "$basePath/Publish/release/release/docker-image" ]; then
|
|
|
|
|
|
-if [ "$DOCKER_Buildx" != "false" ]; then
|
|
|
- sh 75.docker-image-build-push_cross.bash
|
|
|
+ if [ "$DOCKER_Buildx" != "false" ]; then
|
|
|
+ sh 75.docker-image-build-push_cross.bash
|
|
|
+ else
|
|
|
+ sh 74.docker-image-build-push_amd64.bash
|
|
|
+ fi
|
|
|
else
|
|
|
- sh 74.docker-image-build-push_amd64.bash
|
|
|
+ echo '73.docker-image-build-push.sh -> skip for no docker image files exist'
|
|
|
fi
|
|
|
|
|
|
|
|
|
+
|