Browse Source

Merge pull request #983 from pelias/skip_docker_images_for_greenkeeper

Skip CI Docker Image builds on Greenkeeper branches
pull/987/head
Julian Simioni 7 years ago committed by GitHub
parent
commit
26d704bf75
  1. 5
      .circleci/docker.sh

5
.circleci/docker.sh

@ -6,6 +6,11 @@ DATE=`date +%Y-%m-%d`
DOCKER_REPOSITORY="pelias"
DOCKER_PROJECT="${DOCKER_REPOSITORY}/${CIRCLE_PROJECT_REPONAME}"
# skip builds on greenkeeper branches
if [ "${CIRCLE_BRANCH##greenkeeper}" ]; then
exit 0
fi
# the name of the image that represents the "branch", that is an image that will be updated over time with the git branch
# the production branch is changed to "latest", otherwise the git branch becomes the name of the version
if [[ "${CIRCLE_BRANCH}" == "production" ]]; then

Loading…
Cancel
Save