forked from External/greenlight
GRN2-112: Default language fallback fails with a 500 error (#469)
* GRN2-112: Default language fallback fails with a 500 error * Updates for passing rspec tests * Added cache for gitlab ci * Updated cache for gitlab * Restored Dockerfile * Fixed glitch in filter for build and deployment
This commit is contained in:
@ -53,7 +53,7 @@ if [ -z $CD_DOCKER_REPO ]; then
|
||||
export CD_DOCKER_REPO=$CD_REF_SLUG
|
||||
fi
|
||||
|
||||
if [ "$CD_REF_NAME" != "master" ] && [[ "$CD_REF_NAME" != *"release"* ]] && [ -z $CD_BUILD_ALL ];then
|
||||
if [ "$CD_REF_NAME" != "master" ] && [[ "$CD_REF_NAME" != *"release"* ]] && ( -z $CD_BUILD_ALL ] || [ "$CD_BUILD_ALL" != "true" ] ); then
|
||||
echo "#### Docker image for $CD_REF_SLUG won't be built"
|
||||
exit 0
|
||||
fi
|
||||
|
@ -69,7 +69,7 @@ if [ -z $CD_DOCKER_REPO ]; then
|
||||
export CD_DOCKER_REPO=$CD_REF_SLUG
|
||||
fi
|
||||
|
||||
if [ "$CD_REF_NAME" != "master" ] && [[ "$CD_REF_NAME" != *"release"* ]] && [ -z $CD_DEPLOY_ALL ];then
|
||||
if [ "$CD_REF_NAME" != "master" ] && [[ "$CD_REF_NAME" != *"release"* ]] && ( [ -z $CD_DEPLOY_ALL ] || [ "$CD_DEPLOY_ALL" != "true" ] ); then
|
||||
echo "#### Docker image for $CD_DOCKER_REPO won't be deployed. The conditions for running this build were not met."
|
||||
exit 0
|
||||
fi
|
||||
|
Reference in New Issue
Block a user